diff --git a/src/main/java/com/wms/constants/WmsConstants.java b/src/main/java/com/wms/constants/WmsConstants.java index 8fcded6..9bf351c 100644 --- a/src/main/java/com/wms/constants/WmsConstants.java +++ b/src/main/java/com/wms/constants/WmsConstants.java @@ -16,6 +16,8 @@ public class WmsConstants { public static String EMPTY_STRING = ""; public static String ROOT_MENU_ID = "0"; + public static String MYSQL_JSON_CI = "COLLATE utf8mb4_general_ci"; + public static Map type_values = ImmutableMap.builder() .put("LR01", "CLC一箱两料") .put("LR02", "CLC一箱一料") diff --git a/src/main/java/com/wms/constants/enums/ConfigMapKeyEnum.java b/src/main/java/com/wms/constants/enums/ConfigMapKeyEnum.java index f943505..11e5dec 100644 --- a/src/main/java/com/wms/constants/enums/ConfigMapKeyEnum.java +++ b/src/main/java/com/wms/constants/enums/ConfigMapKeyEnum.java @@ -12,7 +12,10 @@ public enum ConfigMapKeyEnum { MAX_VEHICLE_NUMS("MAX_VEHICLE_NUMS"), MAX_WCS_ACCEPT_NUMS("MAX_WCS_ACCEPT_NUMS"), SLOC_FILTER_STRING("SLOC_FILTER_STRING"), - URL_WCS_CHANGE_TASK("URL_WCS_CHANGE_TASK"); + URL_WCS_CHANGE_TASK("URL_WCS_CHANGE_TASK"), + LOG_DELETE_INTERVAL("LOG_DELETE_INTERVAL"), + RECORD_DELETE_INTERVAL("RECORD_DELETE_INTERVAL"), + IMPORTANT_RECORD_DELETE_INTERVAL("IMPORTANT_RECORD_DELETE_INTERVAL"); private final String configKey; ConfigMapKeyEnum(String configKey) { this.configKey = configKey; diff --git a/src/main/java/com/wms/controller/ExcelController.java b/src/main/java/com/wms/controller/ExcelController.java index 9ec10c9..6bfd5d0 100644 --- a/src/main/java/com/wms/controller/ExcelController.java +++ b/src/main/java/com/wms/controller/ExcelController.java @@ -46,6 +46,7 @@ import java.util.Collections; import java.util.List; import java.util.Objects; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; import static com.wms.utils.HttpUtils.getIpAddr; import static com.wms.utils.StringUtils.convertJsonString; @@ -337,8 +338,8 @@ public class ExcelController { .like(StringUtils.isNotEmpty(stockQuery.getVehicleId()), Stock::getVehicleId, stockQuery.getVehicleId()) .eq(StringUtils.isNotEmpty(stockQuery.getLocationId()), Stock::getLocationId, stockQuery.getLocationId()) .eq(stockQuery.getStockStatus() != null, Stock::getStockStatus, stockQuery.getStockStatus()) - .apply(StringUtils.isNotEmpty(stockQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')", stockQuery.getGoodsId()) - .apply(StringUtils.isNotEmpty(stockQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')", stockQuery.getGoodsName())); + .apply(StringUtils.isNotEmpty(stockQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')" + MYSQL_JSON_CI, stockQuery.getGoodsId()) + .apply(StringUtils.isNotEmpty(stockQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')" + MYSQL_JSON_CI, stockQuery.getGoodsName())); EasyExcel.write(response.getOutputStream(), StockExcelVo.class) .excelType(ExcelTypeEnum.XLSX) .registerWriteHandler(horizontalCellStyleStrategy) diff --git a/src/main/java/com/wms/controller/JobComponent.java b/src/main/java/com/wms/controller/JobComponent.java index 543b9ff..6257e42 100644 --- a/src/main/java/com/wms/controller/JobComponent.java +++ b/src/main/java/com/wms/controller/JobComponent.java @@ -155,13 +155,15 @@ public class JobComponent { } } - /** * 每天查询一次是否有过期记录 * 每天晚上10点执行一次 */ -// @Scheduled(cron = "0 0 22 * * ?") + @Scheduled(cron = "0 0 22 * * ?") public void deleteOutOfDateData() { - logger.info("执行定时任务:删除过期数据"); + // 删除日志数据 + wmsJobService.deleteLogsRegularly(); + // 删除记录数据 + wmsJobService.deleteRecordsRegularly(); } } \ No newline at end of file diff --git a/src/main/java/com/wms/controller/RecordController.java b/src/main/java/com/wms/controller/RecordController.java index cba98fe..5b0b6c4 100644 --- a/src/main/java/com/wms/controller/RecordController.java +++ b/src/main/java/com/wms/controller/RecordController.java @@ -24,6 +24,7 @@ import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.interceptor.TransactionAspectSupport; import org.springframework.web.bind.annotation.*; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; import static com.wms.utils.StringUtils.convertJsonString; /** @@ -61,8 +62,8 @@ public class RecordController { LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() .eq(taskRecordQuery.getTaskType() != null, TaskRecord::getTaskType, taskRecordQuery.getTaskType()) .like(StringUtils.isNotEmpty(taskRecordQuery.getVehicleId()), TaskRecord::getVehicleId, taskRecordQuery.getVehicleId()) - .apply(StringUtils.isNotEmpty(taskRecordQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')", taskRecordQuery.getGoodsId()) - .apply(StringUtils.isNotEmpty(taskRecordQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')", taskRecordQuery.getGoodsName()); + .apply(StringUtils.isNotEmpty(taskRecordQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')" + MYSQL_JSON_CI, taskRecordQuery.getGoodsId()) + .apply(StringUtils.isNotEmpty(taskRecordQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')" + MYSQL_JSON_CI, taskRecordQuery.getGoodsName()); Page taskRecordPage = taskRecordService.page(page, lambdaQueryWrapper); // 生成数据 PageDto pageDto = PageDto.of(taskRecordPage, records -> BeanUtil.copyProperties(records, TaskRecordVO.class)); diff --git a/src/main/java/com/wms/controller/StockController.java b/src/main/java/com/wms/controller/StockController.java index b82815c..0f62603 100644 --- a/src/main/java/com/wms/controller/StockController.java +++ b/src/main/java/com/wms/controller/StockController.java @@ -12,6 +12,7 @@ import com.wms.entity.app.dto.StockDto; import com.wms.entity.app.request.StockQuery; import com.wms.entity.app.vo.StockVo; import com.wms.entity.table.Stock; +import com.wms.service.IStockUpdateRecordService; import com.wms.service.StockService; import com.wms.utils.HttpUtils; import com.wms.utils.StringUtils; @@ -33,6 +34,7 @@ import java.util.ArrayList; import java.util.List; import java.util.Map; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; import static com.wms.utils.StringUtils.convertJsonString; /** @@ -51,7 +53,10 @@ public class StockController { * 库存服务 */ private final StockService stockService; - + /** + * 库存更新记录服务 + */ + private final IStockUpdateRecordService stockUpdateRecordService; /** * 请求头部信息 */ @@ -72,8 +77,8 @@ public class StockController { .like(StringUtils.isNotEmpty(stockQuery.getVehicleId()), Stock::getVehicleId, stockQuery.getVehicleId()) .eq(StringUtils.isNotEmpty(stockQuery.getLocationId()), Stock::getLocationId, stockQuery.getLocationId()) .eq(stockQuery.getStockStatus() != null, Stock::getStockStatus, stockQuery.getStockStatus()) - .apply(StringUtils.isNotEmpty(stockQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')", stockQuery.getGoodsId()) - .apply(StringUtils.isNotEmpty(stockQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')", stockQuery.getGoodsName()) + .apply(StringUtils.isNotEmpty(stockQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')" + MYSQL_JSON_CI, stockQuery.getGoodsId()) + .apply(StringUtils.isNotEmpty(stockQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')" + MYSQL_JSON_CI, stockQuery.getGoodsName()) .orderByDesc(Stock::getLastUpdateTime)); PageDto pageDto = PageDto.of(stockPage, StockVo::of); @@ -112,7 +117,7 @@ public class StockController { stockVo.setGoodsId(stockQuery.getGoodsId()); // 查询库存 List stocks = stockService.list(new LambdaQueryWrapper() - .apply(StringUtils.isNotEmpty(stockQuery.getGoodsId()), "goods_related ->> '$.goodsId' = {0}", stockQuery.getGoodsId())); + .apply(StringUtils.isNotEmpty(stockQuery.getGoodsId()), "goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, stockQuery.getGoodsId())); if (stocks == null || stocks.isEmpty()) { // 没有库存 stockVo.setRemainNum(BigDecimal.ZERO); @@ -161,9 +166,11 @@ public class StockController { rsp.setMessage("请求的库存编号为空,不允许修改"); return convertJsonString(rsp); } + Stock stockBefore = stockService.getOne(new LambdaQueryWrapper().eq(Stock::getStockId, stock.getStockId())); LambdaQueryWrapper stockLambdaQueryWrapper = new LambdaQueryWrapper().eq(Stock::getStockId, stock.getStockId()); if (stock.getGoodsRelated().getRemainNum().compareTo(BigDecimal.ZERO) <= 0) { if (stockService.remove(stockLambdaQueryWrapper)) { + stockUpdateRecordService.addStockUpdateRecord(stockBefore, null, "删除库存", "前端界面"); // 返回成功 logger.info("数量为0,删除库存成功"); rsp.setCode(ResponseCode.OK.getCode()); @@ -176,11 +183,11 @@ public class StockController { } } else { if (stockService.update(BeanUtil.copyProperties(stock, Stock.class), stockLambdaQueryWrapper)) { + stockUpdateRecordService.addStockUpdateRecord(stockBefore, BeanUtil.copyProperties(stock, Stock.class), "修改库存", "前端界面"); // 返回成功 logger.info("更新库存信息成功"); rsp.setCode(ResponseCode.OK.getCode()); rsp.setMessage("更新库存信息成功"); - return JSON.toJSONString(rsp); } else { // 返回失败 logger.error("更新库存信息失败"); @@ -218,6 +225,7 @@ public class StockController { StockDto tempStock = new StockDto(); tempStock.setStockId(WmsUtils.generateId("ST")); if (stockService.save(BeanUtil.copyProperties(stock, Stock.class))) { + stockUpdateRecordService.addStockUpdateRecord(null, BeanUtil.copyProperties(stock, Stock.class), "新增库存", "前端界面"); // 返回成功 logger.info("添加库存信息成功"); rsp.setCode(ResponseCode.OK.getCode()); @@ -228,7 +236,7 @@ public class StockController { rsp.setCode(ResponseCode.ERROR.getCode()); rsp.setMessage("添加库存信息失败"); } - return JSON.toJSONString(rsp); + return convertJsonString(rsp); } catch (Exception e) { // 回滚事务 TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); @@ -236,7 +244,7 @@ public class StockController { // 返回其他异常 rsp.setCode(ResponseCode.ERROR.getCode()); rsp.setMessage(e.getMessage()); - return JSON.toJSONString(rsp); + return convertJsonString(rsp); } } } \ No newline at end of file diff --git a/src/main/java/com/wms/controller/TaskController.java b/src/main/java/com/wms/controller/TaskController.java index 8c97e68..a49c68d 100644 --- a/src/main/java/com/wms/controller/TaskController.java +++ b/src/main/java/com/wms/controller/TaskController.java @@ -44,6 +44,7 @@ import java.util.*; import java.util.stream.Collectors; import static com.wms.config.InitLocalConfig.configMap; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; import static com.wms.utils.StringUtils.convertJsonString; import static com.wms.utils.WmsUtils.generateId; @@ -147,6 +148,10 @@ public class TaskController { * 非计划领料服务 */ private final NoPlanRecordService noPlanRecordService; + /** + * 库存更新服务 + */ + private final IStockUpdateRecordService stockUpdateRecordService; /** * 日志服务 */ @@ -330,18 +335,22 @@ public class TaskController { if (inTask.getGoodsRelated() != null && StringUtils.isNotEmpty(inTask.getGoodsRelated().getGoodsId())) { // 查询这个物料有没有库存 Stock existStock = stockService.getOne(new LambdaQueryWrapper() - .apply("goods_related -> '$.goodsId' = {0}", inTask.getGoodsRelated().getGoodsId()) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, inTask.getGoodsRelated().getGoodsId()) .eq(Stock::getVehicleId, inTask.getVehicleId()) .last("limit 1")); if (existStock != null) { + Stock originStock = BeanUtil.copyProperties(existStock, Stock.class); // 已有库存,直接更新数量 + existStock.setLocationId(inTask.getDestination()); existStock.getGoodsRelated().setRemainNum(existStock.getGoodsRelated().getRemainNum().add(inTask.getGoodsRelated().getOpNum())); existStock.getGoodsRelated().setTotalNum(existStock.getGoodsRelated().getTotalNum().add(inTask.getGoodsRelated().getOpNum())); stockService.update(existStock, new LambdaUpdateWrapper().eq(Stock::getStockId, existStock.getStockId())); + stockUpdateRecordService.addStockUpdateRecord(originStock, existStock, "入库", inTask.getUserName()); } 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()); @@ -354,6 +363,7 @@ public class TaskController { detailInfo.setTotalNum(inTask.getGoodsRelated().getOpNum()); newStock.setGoodsRelated(detailInfo); stockService.save(newStock); + stockUpdateRecordService.addStockUpdateRecord(null, newStock, "入库", inTask.getUserName()); } } } @@ -453,6 +463,10 @@ public class TaskController { } } else {// 代表整出 // 删除当前载具上所有库存 + List removeStocks = stockService.list(new LambdaQueryWrapper().eq(Stock::getVehicleId, outTask.getVehicleId())); + for (Stock stock : removeStocks) { + stockUpdateRecordService.addStockUpdateRecord(stock, null, "整出", outTask.getUserName()); + } stockService.remove(new LambdaQueryWrapper().eq(Stock::getVehicleId, outTask.getVehicleId())); // 删除载具 vehicleService.remove(new LambdaQueryWrapper().eq(Vehicle::getVehicleId, outTask.getVehicleId())); @@ -723,8 +737,8 @@ public class TaskController { .eq(taskQuery.getTaskType() != null, Task::getTaskType, taskQuery.getTaskType()) .eq(taskQuery.getTaskStatus() != null, Task::getTaskStatus, taskQuery.getTaskStatus()) .like(StringUtils.isNotEmpty(taskQuery.getVehicleId()), Task::getVehicleId, taskQuery.getVehicleId()) - .apply(StringUtils.isNotEmpty(taskQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')", taskQuery.getGoodsId()) - .apply(StringUtils.isNotEmpty(taskQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')", taskQuery.getGoodsName()); + .apply(StringUtils.isNotEmpty(taskQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')" + MYSQL_JSON_CI, taskQuery.getGoodsId()) + .apply(StringUtils.isNotEmpty(taskQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')" + MYSQL_JSON_CI, taskQuery.getGoodsName()); Page tasksPage = taskService.page(page, lambdaQueryWrapper); // 生成数据 PageDto pageDto = PageDto.of(tasksPage, tasks -> BeanUtil.copyProperties(tasks, TaskVO.class)); @@ -757,8 +771,8 @@ public class TaskController { .eq(taskQuery.getTaskStatus() != null, Task::getTaskStatus, taskQuery.getTaskStatus()) .eq(taskQuery.getIsPicking() != null, Task::getIsPicking, taskQuery.getIsPicking()) .like(StringUtils.isNotEmpty(taskQuery.getVehicleId()), Task::getVehicleId, taskQuery.getVehicleId()) - .apply(StringUtils.isNotEmpty(taskQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')", taskQuery.getGoodsId()) - .apply(StringUtils.isNotEmpty(taskQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')", taskQuery.getGoodsName()); + .apply(StringUtils.isNotEmpty(taskQuery.getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')" + MYSQL_JSON_CI, taskQuery.getGoodsId()) + .apply(StringUtils.isNotEmpty(taskQuery.getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')" + MYSQL_JSON_CI, taskQuery.getGoodsName()); List tasks = taskService.list(lambdaQueryWrapper); response.setCode(ResponseCode.OK.getCode()); response.setMessage("查询成功"); @@ -893,7 +907,7 @@ public class TaskController { // 查找库存信息 Stock stock = stockService.getOne(new LambdaQueryWrapper() .eq(Stock::getVehicleId, vehicleId) - .apply("goods_related ->> '$.goodsId' = {0}", workQuery.getGoodsId()) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, workQuery.getGoodsId()) .last("limit 1")); if (stock == null || StringUtils.isEmpty(stock.getStockId()) || stock.getGoodsRelated() == null) { logger.error("请求料号:{}与正在拣选的箱子:{}无对应关系", workQuery.getGoodsId(), vehicleId); @@ -1196,14 +1210,16 @@ public class TaskController { workFlowService.updateById(workFlow); // 更新库存数量 Stock existStock = stockService.getOne(new LambdaQueryWrapper() - .apply("goods_related -> '$.goodsId' = {0}", workFlow.getGoodsId()) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, workFlow.getGoodsId()) .eq(Stock::getVehicleId, eTaskFeedbackRequest.getVehicleNo()) .last("limit 1")); if (existStock != null && existStock.getGoodsRelated() != null) { + Stock originStock = BeanUtil.copyProperties(existStock, Stock.class); StockDetailInfo goodsDetail = existStock.getGoodsRelated(); goodsDetail.setRemainNum(goodsDetail.getRemainNum().subtract(BigDecimal.valueOf(eTaskFeedbackRequest.getConfirmNum()))); existStock.setGoodsRelated(goodsDetail); stockService.updateById(existStock); + stockUpdateRecordService.addStockUpdateRecord(originStock, existStock, "备料拣选更新", "电子标签灯光反馈"); } // 更新电子标签库位信息 etagLocationService.update(new LambdaUpdateWrapper() @@ -1310,14 +1326,16 @@ public class TaskController { // 处理库存偏差 if (workConfirmRequest.getRemainNumReal().compareTo(workConfirmRequest.getRemainNumOrigin()) != 0) { Stock existStock = stockService.getOne(new LambdaQueryWrapper() - .apply("goods_related -> '$.goodsId' = {0}", workConfirmRequest.getGoodsId()) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, workConfirmRequest.getGoodsId()) .eq(Stock::getVehicleId, pickTask.getVehicleId()) .last("limit 1"));// 更新库存数量 if (existStock != null && existStock.getGoodsRelated() != null) { + Stock originStock = BeanUtil.copyProperties(existStock, Stock.class); StockDetailInfo goodsDetail = existStock.getGoodsRelated(); goodsDetail.setRemainNum(workConfirmRequest.getRemainNumReal()); existStock.setGoodsRelated(goodsDetail); stockService.updateById(existStock); + stockUpdateRecordService.addStockUpdateRecord(originStock, existStock, "站台确认更新", workConfirmRequest.getUserName()); } OutsideVehicles currentGoodsVehicle = outsideVehiclesService.getOne(new LambdaQueryWrapper() .eq(OutsideVehicles::getVehicleId, pickTask.getVehicleId()) @@ -2287,7 +2305,7 @@ public class TaskController { } // 查询库存 List stockList = stockService.list(new LambdaQueryWrapper() - .apply("goods_related ->> '$.goodsId' = {0}", noPlanRequest.getGoodsId()) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, noPlanRequest.getGoodsId()) .apply("goods_related ->> '$.remainNum' > 0") .orderByAsc(Stock::getCreateTime)); // 查询应该的库存总数 @@ -2476,15 +2494,17 @@ public class TaskController { } // 更新库存 Stock existStock = stockService.getOne(new LambdaQueryWrapper() - .apply("goods_related -> '$.goodsId' = {0}", pickNumQuery.getGoodsId()) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, pickNumQuery.getGoodsId()) .eq(Stock::getVehicleId, pickNumQuery.getVehicleId()) .last("limit 1")); // 更新库存数量 if (existStock != null && existStock.getGoodsRelated() != null) { + Stock originStock = BeanUtil.copyProperties(existStock, Stock.class); StockDetailInfo goodsDetail = existStock.getGoodsRelated(); goodsDetail.setRemainNum(goodsDetail.getRemainNum().subtract(pickNumQuery.getRealPickNum())); existStock.setGoodsRelated(goodsDetail); stockService.updateById(existStock); + stockUpdateRecordService.addStockUpdateRecord(originStock, existStock, "直接物料非计划领料确认回库", pickNumQuery.getUserName()); } // 判断这个箱子是否还有拣选任务 boolean hasPickTasks = pickTaskService.exists(new LambdaQueryWrapper() diff --git a/src/main/java/com/wms/entity/app/request/StockUpdateRecordQuery.java b/src/main/java/com/wms/entity/app/request/StockUpdateRecordQuery.java new file mode 100644 index 0000000..fe633da --- /dev/null +++ b/src/main/java/com/wms/entity/app/request/StockUpdateRecordQuery.java @@ -0,0 +1,10 @@ +package com.wms.entity.app.request; + +import lombok.Data; +import lombok.EqualsAndHashCode; + +@EqualsAndHashCode(callSuper = true) +@Data +public class StockUpdateRecordQuery extends PageQuery { + +} diff --git a/src/main/java/com/wms/entity/app/vo/StockUpdateRecordVo.java b/src/main/java/com/wms/entity/app/vo/StockUpdateRecordVo.java new file mode 100644 index 0000000..d758bbd --- /dev/null +++ b/src/main/java/com/wms/entity/app/vo/StockUpdateRecordVo.java @@ -0,0 +1,74 @@ +package com.wms.entity.app.vo; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Data; + +import java.math.BigDecimal; +import java.time.LocalDateTime; + +/** + * 库存更新记录Vo + */ +@Data +public class StockUpdateRecordVo { + /** + * 库存编号 + */ + @JsonProperty("record_id") + private String recordId; + /** + * 库位ID + */ + @JsonProperty("stock_id") + private String stockId; + /** + * 库位ID + */ + @JsonProperty("vehicle_id") + private String vehicleId; + /** + * 库位ID + */ + @JsonProperty("goods_id") + private String goodsId; + /** + * 库位ID + */ + @JsonProperty("goods_name") + private String goodsName; + /** + * 库位ID + */ + @JsonProperty("location_before") + private String locationBefore; + /** + * 库位ID + */ + @JsonProperty("location_after") + private String locationAfter; + /** + * 库位ID + */ + @JsonProperty("quantity_before") + private BigDecimal quantityBefore; + /** + * 库位ID + */ + @JsonProperty("quantity_after") + private BigDecimal quantityAfter; + /** + * 库位ID + */ + @JsonProperty("reason") + private String reason; + /** + * 更新时间 + */ + @JsonProperty("updateTime") + private LocalDateTime updateTime; + /** + * 更新用户 + */ + @JsonProperty("updateUser") + private String updateUser; +} diff --git a/src/main/java/com/wms/entity/table/StockUpdateRecord.java b/src/main/java/com/wms/entity/table/StockUpdateRecord.java new file mode 100644 index 0000000..4b2bfa8 --- /dev/null +++ b/src/main/java/com/wms/entity/table/StockUpdateRecord.java @@ -0,0 +1,77 @@ +package com.wms.entity.table; + +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +import java.math.BigDecimal; +import java.time.LocalDateTime; + +/** + * 接口更新记录 + */ +@Data +@TableName(value = "tbl_app_stock_update_record", autoResultMap = true) +public class StockUpdateRecord { + /** + * 记录id + */ + @TableId("record_id") + private String recordId; + /** + * 库存id + */ + @TableField("stock_id") + private String stockId; + /** + * 料箱号 + */ + @TableField("vehicle_id") + private String vehicleId; + /** + * 料号 + */ + @TableField("goods_id") + private String goodsId; + /** + * 物料名称 + */ + @TableField("goods_name") + private String goodsName; + /** + * 更新前库位 + */ + @TableField("location_before") + private String locationBefore; + /** + * 更新后库位 + */ + @TableField("location_after") + private String locationAfter; + /** + * 更新前数量 + */ + @TableField("quantity_before") + private BigDecimal quantityBefore; + /** + * 更新后数量 + */ + @TableField("quantity_after") + private BigDecimal quantityAfter; + /** + * 更新原因 + */ + @TableField("reason") + private String reason; + /** + * 更新时间 + */ + @TableField("update_time") + private LocalDateTime updateTime; + /** + * 更新用户 + */ + @TableField("update_user") + private String updateUser; +} diff --git a/src/main/java/com/wms/mapper/StockUpdateRecordMapper.java b/src/main/java/com/wms/mapper/StockUpdateRecordMapper.java new file mode 100644 index 0000000..ebed25d --- /dev/null +++ b/src/main/java/com/wms/mapper/StockUpdateRecordMapper.java @@ -0,0 +1,12 @@ +package com.wms.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.wms.entity.table.StockUpdateRecord; +import org.apache.ibatis.annotations.Mapper; + +/** + * 库存更新记录Mapper + */ +@Mapper +public interface StockUpdateRecordMapper extends BaseMapper { +} diff --git a/src/main/java/com/wms/service/IStockUpdateRecordService.java b/src/main/java/com/wms/service/IStockUpdateRecordService.java new file mode 100644 index 0000000..c2f7929 --- /dev/null +++ b/src/main/java/com/wms/service/IStockUpdateRecordService.java @@ -0,0 +1,20 @@ +package com.wms.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.wms.entity.table.Stock; +import com.wms.entity.table.StockUpdateRecord; + +/** + * 库存更新记录接口 + */ +public interface IStockUpdateRecordService extends IService { + /** + * 添加库存更新记录 + * @param stockBefore 原始库存---可为null + * @param stockAfter 锌库存---可为null + * @param reason 更新原因 + * @param opUser 操作用户 + * @return 添加结果 + */ + boolean addStockUpdateRecord(Stock stockBefore, Stock stockAfter, String reason, String opUser); +} diff --git a/src/main/java/com/wms/service/business/IWmsJobService.java b/src/main/java/com/wms/service/business/IWmsJobService.java index 0d8d1b6..40e3851 100644 --- a/src/main/java/com/wms/service/business/IWmsJobService.java +++ b/src/main/java/com/wms/service/business/IWmsJobService.java @@ -21,4 +21,14 @@ public interface IWmsJobService { * @throws Exception 异常用于回滚 */ void solveDuplicateTask() throws Exception; + + /** + * 定期清除日志数据 + */ + void deleteLogsRegularly(); + + /** + * 定期清除记录数据 + */ + void deleteRecordsRegularly(); } diff --git a/src/main/java/com/wms/service/business/serviceImplements/ValidateServiceImplements.java b/src/main/java/com/wms/service/business/serviceImplements/ValidateServiceImplements.java index dce4f08..54f1b3f 100644 --- a/src/main/java/com/wms/service/business/serviceImplements/ValidateServiceImplements.java +++ b/src/main/java/com/wms/service/business/serviceImplements/ValidateServiceImplements.java @@ -22,6 +22,8 @@ import org.springframework.stereotype.Service; import java.math.BigDecimal; import java.util.Objects; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; + /** * 验证服务接口的实现 */ @@ -144,8 +146,8 @@ public class ValidateServiceImplements implements IValidateService { } // 查询库存信息 LambdaQueryWrapper stockQueryWrapper = new LambdaQueryWrapper() - .apply("goods_related -> '$.goodsId' = {0}", taskOutRequest.getGoodsId()) - .apply("goods_related -> '$.remainNum' > 0") + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, taskOutRequest.getGoodsId()) + .apply("goods_related ->> '$.remainNum' > 0") .eq(StringUtils.isNotEmpty(taskOutRequest.getVehicleId()), Stock::getVehicleId, taskOutRequest.getVehicleId()) .eq(StringUtils.isNotEmpty(taskOutRequest.getOriginPoint()), Stock::getLocationId, taskOutRequest.getOriginPoint()); if (!stockService.exists(stockQueryWrapper)) { diff --git a/src/main/java/com/wms/service/business/serviceImplements/WmsJobServiceImplements.java b/src/main/java/com/wms/service/business/serviceImplements/WmsJobServiceImplements.java index 3e3f11f..f9d5fdb 100644 --- a/src/main/java/com/wms/service/business/serviceImplements/WmsJobServiceImplements.java +++ b/src/main/java/com/wms/service/business/serviceImplements/WmsJobServiceImplements.java @@ -24,6 +24,10 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Isolation; +import org.springframework.transaction.annotation.Propagation; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.transaction.interceptor.TransactionAspectSupport; import java.time.LocalDateTime; import java.util.*; @@ -45,6 +49,7 @@ public class WmsJobServiceImplements implements IWmsJobService { /** * 发送正常的任务 */ + @Override public void sendCommonTasks() throws Exception { try { String max_vehicle_nums = configMap.get(ConfigMapKeyEnum.MAX_VEHICLE_NUMS.getConfigKey()); @@ -174,6 +179,7 @@ public class WmsJobServiceImplements implements IWmsJobService { /** * 发送拣选任务 */ + @Override public void sendPickTasks() throws Exception { try { // 检索任务表---新建未下发的拣选任务 @@ -243,6 +249,7 @@ public class WmsJobServiceImplements implements IWmsJobService { /** * 处理重复入库的任务 */ + @Override public void solveDuplicateTask() throws Exception { try { // 检索任务表---重复入库的任务 @@ -307,4 +314,53 @@ public class WmsJobServiceImplements implements IWmsJobService { throw new Exception("向WCS发送新目的地时发生异常"); } } + + /** + * 定期清除日志 + */ + @Override + @Transactional(isolation = Isolation.REPEATABLE_READ, propagation = Propagation.REQUIRED) + public void deleteLogsRegularly() { + try { + int interval = 30; + try { + interval = Integer.parseInt(configMap.get(ConfigMapKeyEnum.LOG_DELETE_INTERVAL.getConfigKey())); + } catch (Exception e) { + logger.error("获取日志清理天数错误,使用默认值30天"); + } + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() + .apply("log_time <= date_add(curdate(),INTERVAL -{0} DAY)", interval); + logService.remove(lambdaQueryWrapper); + } catch (Exception exception) { + // 回滚事务 + TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); + } + } + + /** + * 定期清除记录 + */ + @Override + @Transactional(isolation = Isolation.REPEATABLE_READ, propagation = Propagation.REQUIRED) + public void deleteRecordsRegularly() { + try { + int interval = 180;// 普通接口记录默认保留180天 + int importantInterval = 365;// 重要接口记录默认保留一年 + try { + interval = Integer.parseInt(configMap.get(ConfigMapKeyEnum.LOG_DELETE_INTERVAL.getConfigKey())); + } catch (Exception e) { + logger.error("获取普通记录清理天数错误,使用默认值180天"); + } + try { + importantInterval = Integer.parseInt(configMap.get(ConfigMapKeyEnum.LOG_DELETE_INTERVAL.getConfigKey())); + } catch (Exception e) { + logger.error("获取重要记录清理天数错误,使用默认值365天"); + } + + // 重要记录---盘点记录、工作总结、库存更新记录、非计划领料记录、上传文件记录 + } catch (Exception exception) { + // 回滚事务 + TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); + } + } } 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 ed8ddee..d8b7e07 100644 --- a/src/main/java/com/wms/service/business/serviceImplements/WmsTaskServiceImplements.java +++ b/src/main/java/com/wms/service/business/serviceImplements/WmsTaskServiceImplements.java @@ -24,6 +24,7 @@ import java.util.ArrayList; import java.util.List; import java.util.Objects; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; import static com.wms.utils.StringUtils.convertJsonString; import static com.wms.utils.WmsUtils.generateId; @@ -196,8 +197,8 @@ public class WmsTaskServiceImplements implements IWmsTaskService { public String genGoodsOutTask(TaskOutRequest taskOutRequest) { // 查询库存 LambdaQueryWrapper stockQueryWrapper = new LambdaQueryWrapper() - .apply("goods_related -> '$.goodsId' = {0}", taskOutRequest.getGoodsId()) - .apply("goods_related -> '$.remainNum' > 0") + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, taskOutRequest.getGoodsId()) + .apply("goods_related ->> '$.remainNum' > 0") .eq(StringUtils.isNotEmpty(taskOutRequest.getVehicleId()), Stock::getVehicleId, taskOutRequest.getVehicleId()) .eq(StringUtils.isNotEmpty(taskOutRequest.getOriginPoint()), Stock::getLocationId, taskOutRequest.getOriginPoint()); List stocks = stockService.list(stockQueryWrapper); @@ -313,7 +314,7 @@ public class WmsTaskServiceImplements implements IWmsTaskService { // 查询当前料箱当前物料的库存 Stock stock = stockService.getOne(new LambdaQueryWrapper() .eq(Stock::getVehicleId, outsideVehicle.getVehicleId()) - .apply("goods_related ->> '$.goodsId' = {0}", goodsId) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, goodsId) .apply("goods_related ->> '$.remainNum' > 0") .last("limit 1")); if (stock == null) { @@ -350,7 +351,7 @@ public class WmsTaskServiceImplements implements IWmsTaskService { // 查询库存,判断数量是否充足 List stockList = stockService.list(new LambdaQueryWrapper() .eq(Stock::getStockStatus, StockStatus.OK.getCode()) - .apply("goods_related ->> '$.goodsId' = {0}", goodsId) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, goodsId) .orderByAsc(Stock::getCreateTime)); if (stockList != null && !stockList.isEmpty()) { List waitForOutStockList = new ArrayList<>(); diff --git a/src/main/java/com/wms/service/business/serviceImplements/WorkServiceImplements.java b/src/main/java/com/wms/service/business/serviceImplements/WorkServiceImplements.java index b8fb62d..77b8e97 100644 --- a/src/main/java/com/wms/service/business/serviceImplements/WorkServiceImplements.java +++ b/src/main/java/com/wms/service/business/serviceImplements/WorkServiceImplements.java @@ -21,6 +21,7 @@ import java.time.LocalDateTime; import java.util.*; import static com.wms.config.InitLocalConfig.configMap; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; import static com.wms.utils.StringUtils.convertJsonString; /** @@ -219,7 +220,7 @@ public class WorkServiceImplements implements IWorkService { } // 判断实际库存是否充足 List stockList = stockService.list(new LambdaQueryWrapper() - .apply("goods_related ->> '$.goodsId' = {0}", goodsToStation.getGoodsId()) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, goodsToStation.getGoodsId()) .apply("goods_related ->> '$.remainNum' > 0")); if (stockList == null || stockList.isEmpty()) { goodsToStation.setDistributeStatus(3); diff --git a/src/main/java/com/wms/service/serviceImplements/LocationServiceImplements.java b/src/main/java/com/wms/service/serviceImplements/LocationServiceImplements.java index 1ccdc19..0a6b1be 100644 --- a/src/main/java/com/wms/service/serviceImplements/LocationServiceImplements.java +++ b/src/main/java/com/wms/service/serviceImplements/LocationServiceImplements.java @@ -21,6 +21,8 @@ import org.springframework.stereotype.Service; import java.time.LocalDateTime; import java.util.*; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; + @Service @RequiredArgsConstructor(onConstructor = @__(@Autowired)) public class LocationServiceImplements extends ServiceImpl implements LocationService { @@ -142,7 +144,7 @@ public class LocationServiceImplements extends ServiceImpl equipmentIds = new ArrayList<>(); List tasks = taskMapper.selectList(new LambdaQueryWrapper() .select(Task::getDestination) - .apply("goods_related -> '$.goodsId' = {0}", goodsId) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, goodsId) .eq(Task::getTaskType, 1)); for (Task task : tasks) { Location tempLocation = locationMapper.selectOne(new LambdaQueryWrapper().eq(Location::getLocationId, task.getDestination())); @@ -152,7 +154,7 @@ public class LocationServiceImplements extends ServiceImpl stocks = stockMapper.selectList(new LambdaQueryWrapper() .select(Stock::getLocationId) - .apply("goods_related -> '$.goodsId' = {0}", goodsId) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, goodsId) .eq(Stock::getStockStatus, StockStatus.OK.getCode())); for (Stock stock : stocks) { Location tempLocation = locationMapper.selectOne(new LambdaQueryWrapper().eq(Location::getLocationId, stock.getLocationId())); diff --git a/src/main/java/com/wms/service/serviceImplements/StockServiceImplements.java b/src/main/java/com/wms/service/serviceImplements/StockServiceImplements.java index 6fc5d11..8adbd97 100644 --- a/src/main/java/com/wms/service/serviceImplements/StockServiceImplements.java +++ b/src/main/java/com/wms/service/serviceImplements/StockServiceImplements.java @@ -18,6 +18,8 @@ import org.springframework.stereotype.Service; import java.math.BigDecimal; import java.util.*; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; + @Service @RequiredArgsConstructor(onConstructor = @__(@Autowired)) public class StockServiceImplements extends ServiceImpl implements StockService { @@ -55,7 +57,7 @@ public class StockServiceImplements extends ServiceImpl impl public List selectSumOfGoods(List goodsIdList) { // 先查询库存 List stocks = stockMapper.selectList(new LambdaQueryWrapper() - .apply(goodsIdList != null && !goodsIdList.isEmpty(), "goods_related ->> '$.goodsId' in {0}", goodsIdList)); + .apply(goodsIdList != null && !goodsIdList.isEmpty(), "goods_related ->> '$.goodsId' in {0}" + MYSQL_JSON_CI, goodsIdList)); if (stocks == null || stocks.isEmpty()) { // 查不到对应物料的库存 return Collections.emptyList(); diff --git a/src/main/java/com/wms/service/serviceImplements/StockUpdateRecordServiceImpl.java b/src/main/java/com/wms/service/serviceImplements/StockUpdateRecordServiceImpl.java new file mode 100644 index 0000000..576b238 --- /dev/null +++ b/src/main/java/com/wms/service/serviceImplements/StockUpdateRecordServiceImpl.java @@ -0,0 +1,56 @@ +package com.wms.service.serviceImplements; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.wms.entity.table.Stock; +import com.wms.entity.table.StockUpdateRecord; +import com.wms.mapper.StockUpdateRecordMapper; +import com.wms.service.IStockUpdateRecordService; +import lombok.RequiredArgsConstructor; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.math.BigDecimal; +import java.time.LocalDateTime; + +import static com.wms.utils.WmsUtils.generateId; + +/** + * 库存接收记录服务实现类 + */ +@Service +@RequiredArgsConstructor(onConstructor = @__(@Autowired)) +public class StockUpdateRecordServiceImpl extends ServiceImpl implements IStockUpdateRecordService { + private final StockUpdateRecordMapper stockUpdateRecordMapper; + @Override + public boolean addStockUpdateRecord(Stock stockBefore, Stock stockAfter, String reason, String opUser) { + if (stockBefore == null && stockAfter == null) { + return false; + } + StockUpdateRecord stockUpdateRecord = new StockUpdateRecord(); + stockUpdateRecord.setRecordId(generateId("STOCK_UPDATE_")); + // 解析数据 + if (stockBefore != null) { + stockUpdateRecord.setStockId(stockBefore.getStockId()); + stockUpdateRecord.setGoodsId(stockBefore.getGoodsRelated().getGoodsId()); + stockUpdateRecord.setGoodsName(stockBefore.getGoodsRelated().getGoodsName()); + stockUpdateRecord.setVehicleId(stockBefore.getVehicleId()); + stockUpdateRecord.setLocationBefore(stockBefore.getLocationId()); + stockUpdateRecord.setQuantityBefore(stockBefore.getGoodsRelated().getRemainNum()); + } else { + stockUpdateRecord.setStockId(stockAfter.getStockId()); + stockUpdateRecord.setGoodsId(stockAfter.getGoodsRelated().getGoodsId()); + stockUpdateRecord.setGoodsName(stockAfter.getGoodsRelated().getGoodsName()); + stockUpdateRecord.setVehicleId(stockAfter.getVehicleId()); + stockUpdateRecord.setLocationBefore(""); + stockUpdateRecord.setQuantityBefore(BigDecimal.ZERO); + } + if (stockAfter != null) { + stockUpdateRecord.setLocationAfter(stockAfter.getLocationId()); + stockUpdateRecord.setQuantityAfter(stockAfter.getGoodsRelated().getRemainNum()); + } + stockUpdateRecord.setReason(reason); + stockUpdateRecord.setUpdateTime(LocalDateTime.now()); + stockUpdateRecord.setUpdateUser(opUser); + return stockUpdateRecordMapper.insert(stockUpdateRecord) > 0; + } +} diff --git a/src/main/java/com/wms/service/serviceImplements/TaskRecordServiceImplements.java b/src/main/java/com/wms/service/serviceImplements/TaskRecordServiceImplements.java index d342167..abc288e 100644 --- a/src/main/java/com/wms/service/serviceImplements/TaskRecordServiceImplements.java +++ b/src/main/java/com/wms/service/serviceImplements/TaskRecordServiceImplements.java @@ -15,6 +15,8 @@ import org.springframework.stereotype.Service; import java.util.List; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; + @Service @RequiredArgsConstructor(onConstructor = @__(@Autowired)) @@ -47,9 +49,9 @@ public class TaskRecordServiceImplements extends ServiceImpl> '$.goodsId' like concat('%', {0}, '%')", query.getGoodsRelated().getGoodsId()) + .apply(StringUtils.isNotEmpty(query.getGoodsRelated().getGoodsId()), "goods_related ->> '$.goodsId' like concat('%', {0}, '%')" + MYSQL_JSON_CI, query.getGoodsRelated().getGoodsId()) // 物料名称/描述 - .apply(StringUtils.isNotEmpty(query.getGoodsRelated().getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')", query.getGoodsRelated().getGoodsName()); + .apply(StringUtils.isNotEmpty(query.getGoodsRelated().getGoodsName()), "goods_related ->> '$.goodsName' like concat('%', {0}, '%')" + MYSQL_JSON_CI, query.getGoodsRelated().getGoodsName()); } return super.list(queryWrapper); } 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 6a36ade..58d4188 100644 --- a/src/main/java/com/wms/utils/excel/listener/UploadStocksListener.java +++ b/src/main/java/com/wms/utils/excel/listener/UploadStocksListener.java @@ -15,6 +15,7 @@ import java.time.LocalDateTime; import java.util.ArrayList; import java.util.List; +import static com.wms.constants.WmsConstants.MYSQL_JSON_CI; import static com.wms.utils.StringUtils.convertJsonString; import static com.wms.utils.WmsUtils.generateId; @@ -81,7 +82,7 @@ public class UploadStocksListener implements ReadListener { Stock oldStock = stockService.getOne(new LambdaQueryWrapper() .eq(Stock::getVehicleId, stockExcelVo.getVehicleId()) .eq(Stock::getLocationId, stockExcelVo.getLocationId()) - .apply("goods_related ->> '$.goodsId' = {0}", stockExcelVo.getGoodsId()) + .apply("goods_related ->> '$.goodsId' = {0}" + MYSQL_JSON_CI, stockExcelVo.getGoodsId()) .last("limit 1")); if (oldStock != null) { StockDetailInfo goodsRelated = oldStock.getGoodsRelated(); diff --git a/src/main/resources/mapper/StockUpdateRecordMapper.xml b/src/main/resources/mapper/StockUpdateRecordMapper.xml new file mode 100644 index 0000000..b69af97 --- /dev/null +++ b/src/main/resources/mapper/StockUpdateRecordMapper.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/sql/wms_kate_suzhou.sql b/src/main/resources/sql/wms_kate_suzhou.sql index a28951b..f5f365c 100644 --- a/src/main/resources/sql/wms_kate_suzhou.sql +++ b/src/main/resources/sql/wms_kate_suzhou.sql @@ -11,7 +11,7 @@ Target Server Version : 80032 (8.0.32) File Encoding : 65001 - Date: 07/08/2024 11:34:53 + Date: 06/09/2024 10:30:39 */ SET NAMES utf8mb4; @@ -87,6 +87,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('1-45', '1', 45, 0, 'ASRS-#1', NULL, NU 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 ('1-49', '1', 49, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-50', '1', 50, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-51', '1', 51, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-52', '1', 52, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-53', '1', 53, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-54', '1', 54, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-55', '1', 55, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-56', '1', 56, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-57', '1', 57, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-58', '1', 58, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-59', '1', 59, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-60', '1', 60, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-61', '1', 61, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-62', '1', 62, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-63', '1', 63, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-64', '1', 64, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-65', '1', 65, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-66', '1', 66, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-67', '1', 67, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-68', '1', 68, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-69', '1', 69, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-70', '1', 70, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-71', '1', 71, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-72', '1', 72, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-73', '1', 73, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-74', '1', 74, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-75', '1', 75, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-76', '1', 76, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-77', '1', 77, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-78', '1', 78, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-79', '1', 79, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-80', '1', 80, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-81', '1', 81, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-82', '1', 82, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-83', '1', 83, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-84', '1', 84, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-85', '1', 85, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-86', '1', 86, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-87', '1', 87, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-88', '1', 88, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-89', '1', 89, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-90', '1', 90, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-91', '1', 91, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-92', '1', 92, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-93', '1', 93, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-94', '1', 94, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-95', '1', 95, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-96', '1', 96, 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'); @@ -135,6 +183,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('2-45', '2', 45, 0, 'ASRS-#2', NULL, NU 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 ('2-49', '2', 49, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-50', '2', 50, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-51', '2', 51, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-52', '2', 52, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-53', '2', 53, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-54', '2', 54, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-55', '2', 55, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-56', '2', 56, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-57', '2', 57, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-58', '2', 58, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-59', '2', 59, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-60', '2', 60, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-61', '2', 61, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-62', '2', 62, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-63', '2', 63, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-64', '2', 64, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-65', '2', 65, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-66', '2', 66, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-67', '2', 67, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-68', '2', 68, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-69', '2', 69, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-70', '2', 70, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-71', '2', 71, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-72', '2', 72, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-73', '2', 73, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-74', '2', 74, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-75', '2', 75, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-76', '2', 76, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-77', '2', 77, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-78', '2', 78, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-79', '2', 79, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-80', '2', 80, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-81', '2', 81, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-82', '2', 82, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-83', '2', 83, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-84', '2', 84, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-85', '2', 85, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-86', '2', 86, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-87', '2', 87, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-88', '2', 88, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-89', '2', 89, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-90', '2', 90, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-91', '2', 91, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-92', '2', 92, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-93', '2', 93, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-94', '2', 94, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-95', '2', 95, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-96', '2', 96, 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'); @@ -183,6 +279,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('3-45', '3', 45, 0, 'ASRS-#3', NULL, NU 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 ('3-49', '3', 49, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-50', '3', 50, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-51', '3', 51, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-52', '3', 52, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-53', '3', 53, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-54', '3', 54, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-55', '3', 55, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-56', '3', 56, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-57', '3', 57, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-58', '3', 58, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-59', '3', 59, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-60', '3', 60, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-61', '3', 61, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-62', '3', 62, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-63', '3', 63, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-64', '3', 64, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-65', '3', 65, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-66', '3', 66, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-67', '3', 67, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-68', '3', 68, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-69', '3', 69, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-70', '3', 70, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-71', '3', 71, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-72', '3', 72, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-73', '3', 73, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-74', '3', 74, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-75', '3', 75, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-76', '3', 76, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-77', '3', 77, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-78', '3', 78, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-79', '3', 79, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-80', '3', 80, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-81', '3', 81, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-82', '3', 82, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-83', '3', 83, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-84', '3', 84, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-85', '3', 85, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-86', '3', 86, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-87', '3', 87, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-88', '3', 88, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-89', '3', 89, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-90', '3', 90, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-91', '3', 91, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-92', '3', 92, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-93', '3', 93, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-94', '3', 94, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-95', '3', 95, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-96', '3', 96, 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'); @@ -231,6 +375,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('4-45', '4', 45, 0, 'ASRS-#4', NULL, NU 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 ('4-49', '4', 49, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-50', '4', 50, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-51', '4', 51, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-52', '4', 52, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-53', '4', 53, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-54', '4', 54, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-55', '4', 55, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-56', '4', 56, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-57', '4', 57, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-58', '4', 58, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-59', '4', 59, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-60', '4', 60, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-61', '4', 61, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-62', '4', 62, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-63', '4', 63, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-64', '4', 64, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-65', '4', 65, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-66', '4', 66, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-67', '4', 67, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-68', '4', 68, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-69', '4', 69, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-70', '4', 70, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-71', '4', 71, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-72', '4', 72, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-73', '4', 73, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-74', '4', 74, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-75', '4', 75, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-76', '4', 76, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-77', '4', 77, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-78', '4', 78, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-79', '4', 79, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-80', '4', 80, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-81', '4', 81, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-82', '4', 82, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-83', '4', 83, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-84', '4', 84, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-85', '4', 85, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-86', '4', 86, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-87', '4', 87, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-88', '4', 88, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-89', '4', 89, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-90', '4', 90, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-91', '4', 91, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-92', '4', 92, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-93', '4', 93, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-94', '4', 94, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-95', '4', 95, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-96', '4', 96, 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'); @@ -279,6 +471,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('5-45', '5', 45, 0, 'ASRS-#5', NULL, NU 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 ('5-49', '5', 49, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-50', '5', 50, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-51', '5', 51, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-52', '5', 52, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-53', '5', 53, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-54', '5', 54, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-55', '5', 55, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-56', '5', 56, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-57', '5', 57, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-58', '5', 58, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-59', '5', 59, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-60', '5', 60, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-61', '5', 61, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-62', '5', 62, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-63', '5', 63, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-64', '5', 64, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-65', '5', 65, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-66', '5', 66, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-67', '5', 67, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-68', '5', 68, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-69', '5', 69, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-70', '5', 70, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-71', '5', 71, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-72', '5', 72, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-73', '5', 73, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-74', '5', 74, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-75', '5', 75, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-76', '5', 76, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-77', '5', 77, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-78', '5', 78, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-79', '5', 79, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-80', '5', 80, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-81', '5', 81, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-82', '5', 82, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-83', '5', 83, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-84', '5', 84, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-85', '5', 85, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-86', '5', 86, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-87', '5', 87, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-88', '5', 88, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-89', '5', 89, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-90', '5', 90, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-91', '5', 91, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-92', '5', 92, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-93', '5', 93, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-94', '5', 94, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-95', '5', 95, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-96', '5', 96, 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'); @@ -327,6 +567,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('6-45', '6', 45, 0, 'ASRS-#6', NULL, NU 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 ('6-49', '6', 49, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-50', '6', 50, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-51', '6', 51, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-52', '6', 52, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-53', '6', 53, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-54', '6', 54, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-55', '6', 55, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-56', '6', 56, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-57', '6', 57, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-58', '6', 58, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-59', '6', 59, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-60', '6', 60, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-61', '6', 61, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-62', '6', 62, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-63', '6', 63, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-64', '6', 64, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-65', '6', 65, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-66', '6', 66, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-67', '6', 67, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-68', '6', 68, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-69', '6', 69, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-70', '6', 70, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-71', '6', 71, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-72', '6', 72, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-73', '6', 73, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-74', '6', 74, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-75', '6', 75, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-76', '6', 76, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-77', '6', 77, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-78', '6', 78, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-79', '6', 79, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-80', '6', 80, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-81', '6', 81, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-82', '6', 82, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-83', '6', 83, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-84', '6', 84, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-85', '6', 85, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-86', '6', 86, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-87', '6', 87, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-88', '6', 88, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-89', '6', 89, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-90', '6', 90, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-91', '6', 91, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-92', '6', 92, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-93', '6', 93, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-94', '6', 94, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-95', '6', 95, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-96', '6', 96, 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'); @@ -375,6 +663,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('7-45', '7', 45, 0, 'ASRS-#7', NULL, NU 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 ('7-49', '7', 49, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-50', '7', 50, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-51', '7', 51, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-52', '7', 52, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-53', '7', 53, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-54', '7', 54, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-55', '7', 55, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-56', '7', 56, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-57', '7', 57, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-58', '7', 58, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-59', '7', 59, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-60', '7', 60, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-61', '7', 61, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-62', '7', 62, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-63', '7', 63, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-64', '7', 64, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-65', '7', 65, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-66', '7', 66, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-67', '7', 67, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-68', '7', 68, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-69', '7', 69, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-70', '7', 70, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-71', '7', 71, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-72', '7', 72, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-73', '7', 73, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-74', '7', 74, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-75', '7', 75, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-76', '7', 76, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-77', '7', 77, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-78', '7', 78, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-79', '7', 79, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-80', '7', 80, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-81', '7', 81, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-82', '7', 82, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-83', '7', 83, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-84', '7', 84, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-85', '7', 85, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-86', '7', 86, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-87', '7', 87, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-88', '7', 88, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-89', '7', 89, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-90', '7', 90, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-91', '7', 91, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-92', '7', 92, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-93', '7', 93, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-94', '7', 94, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-95', '7', 95, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-96', '7', 96, 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'); @@ -423,6 +759,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('8-45', '8', 45, 0, 'ASRS-#8', NULL, NU 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 ('8-49', '8', 49, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-50', '8', 50, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-51', '8', 51, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-52', '8', 52, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-53', '8', 53, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-54', '8', 54, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-55', '8', 55, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-56', '8', 56, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-57', '8', 57, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-58', '8', 58, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-59', '8', 59, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-60', '8', 60, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-61', '8', 61, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-62', '8', 62, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-63', '8', 63, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-64', '8', 64, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-65', '8', 65, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-66', '8', 66, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-67', '8', 67, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-68', '8', 68, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-69', '8', 69, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-70', '8', 70, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-71', '8', 71, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-72', '8', 72, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-73', '8', 73, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-74', '8', 74, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-75', '8', 75, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-76', '8', 76, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-77', '8', 77, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-78', '8', 78, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-79', '8', 79, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-80', '8', 80, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-81', '8', 81, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-82', '8', 82, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-83', '8', 83, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-84', '8', 84, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-85', '8', 85, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-86', '8', 86, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-87', '8', 87, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-88', '8', 88, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-89', '8', 89, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-90', '8', 90, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-91', '8', 91, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-92', '8', 92, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-93', '8', 93, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-94', '8', 94, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-95', '8', 95, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-96', '8', 96, 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'); @@ -471,6 +855,54 @@ INSERT INTO `tbl_app_e_location` VALUES ('9-45', '9', 45, 0, 'ASRS-#9', NULL, NU 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'); +INSERT INTO `tbl_app_e_location` VALUES ('9-49', '9', 49, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-50', '9', 50, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-51', '9', 51, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-52', '9', 52, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-53', '9', 53, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-54', '9', 54, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-55', '9', 55, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-56', '9', 56, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-57', '9', 57, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-58', '9', 58, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-59', '9', 59, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-60', '9', 60, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-61', '9', 61, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-62', '9', 62, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-63', '9', 63, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-64', '9', 64, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-65', '9', 65, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-66', '9', 66, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-67', '9', 67, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-68', '9', 68, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-69', '9', 69, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-70', '9', 70, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-71', '9', 71, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-72', '9', 72, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-73', '9', 73, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-74', '9', 74, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-75', '9', 75, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-76', '9', 76, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-77', '9', 77, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-78', '9', 78, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-79', '9', 79, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-80', '9', 80, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-81', '9', 81, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-82', '9', 82, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-83', '9', 83, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-84', '9', 84, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-85', '9', 85, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-86', '9', 86, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-87', '9', 87, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-88', '9', 88, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-89', '9', 89, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-90', '9', 90, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-91', '9', 91, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-92', '9', 92, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-93', '9', 93, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-94', '9', 94, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-95', '9', 95, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-96', '9', 96, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); -- ---------------------------- -- Table structure for tbl_app_e_location_config @@ -490,6 +922,77 @@ CREATE TABLE `tbl_app_e_location_config` ( -- ---------------------------- -- Records of tbl_app_e_location_config -- ---------------------------- +INSERT INTO `tbl_app_e_location_config` VALUES ('1-01', 'ASRS-#1', '115000226284', 'KAMW09MI2', '115000226284-KAMW09MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-02', 'ASRS-#1', '115000226284', 'KAMW09MI1', '115000226284-KAMW09MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-03', 'ASRS-#1', '115000226284', 'KAMW13MI3', '115000226284-KAMW13MI3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-04', 'ASRS-#1', '115000226284', 'KAMW13MI2', '115000226284-KAMW13MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-05', 'ASRS-#1', '115000226284', 'KASW02NF4', '115000226284-KASW02NF4', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-06', 'ASRS-#1', '115000226284', 'KASW02NF5', '115000226284-KASW02NF5', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-07', 'ASRS-#1', '115000226284', 'KASW02NF6', '115000226284-KASW02NF6', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-08', 'ASRS-#1', '115000226284', 'KASW01EF6', '115000226284-KASW01EF6', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-09', 'ASRS-#1', '115000226285', 'KASW01EF5', '115000226285-KASW01EF5', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-10', 'ASRS-#1', '115000226284', 'KASW01EF4', '115000226284-KASW01EF4', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-11', 'ASRS-#1', '115000226284', 'KASW01EF3', '115000226284-KASW01EF3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-12', 'ASRS-#1', '115000226284', 'KAMW07LA1', '115000226284-KAMW07LA1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-13', 'ASRS-#1', '115000226285', 'KASW01EF2', '115000226285-KASW01EF2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-14', 'ASRS-#1', '115000226284', 'KAMW07LA2', '115000226284-KAMW07LA2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-15', 'ASRS-#1', '115000226284', 'KASW01EF1', '115000226284-KASW01EF1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-16', 'ASRS-#1', '115000226284', 'KAMW07LA3', '115000226284-KAMW07LA3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-17', 'ASRS-#1', '115000226285', 'KAMW14MIA', '115000226285-KAMW14MIA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-18', 'ASRS-#1', '115000226284', 'KAMW05MI1', '115000226284-KAMW05MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-19', 'ASRS-#1', '115000226284', 'KAMW05MI2', '115000226284-KAMW05MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-20', 'ASRS-#1', '115000226284', 'KAMW01MI1', '115000226284-KAMW01MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-21', 'ASRS-#1', '115000226284', 'KAMW01MI2', '115000226284-KAMW01MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-22', 'ASRS-#1', '115000226284', 'KAMW08MI1', '115000226284-KAMW08MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-23', 'ASRS-#1', '115000226284', 'KAMW08MI3', '115000226284-KAMW08MI3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-24', 'ASRS-#1', '115000226284', 'KAMW06MI1', '115000226284-KAMW06MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-25', 'ASRS-#1', '115000226284', 'KAMW08MI2', '115000226284-KAMW08MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-26', 'ASRS-#1', '115000226284', 'KAMW03ET4', '115000226284-KAMW03ET4', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-27', 'ASRS-#1', '115000226284', 'KAMW03ET2', '115000226284-KAMW03ET2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-28', 'ASRS-#1', '115000226284', 'KAMW16MI1', '115000226284-KAMW16MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-29', 'ASRS-#1', '115000226284', 'KAMW03ET3', '115000226284-KAMW03ET3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-30', 'ASRS-#1', '115000226285', 'KAMW16MI2', '115000226285-KAMW16MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-31', 'ASRS-#1', '115000226284', 'KASW02NF1', '115000226284-KASW02NF1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-32', 'ASRS-#1', '115000226285', 'KASW02NF2', '115000226285-KASW02NF2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-33', 'ASRS-#1', '115000226284', 'KASW02NF3', '115000226284-KASW02NF3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-34', 'ASRS-#1', '115000226284', 'KAMW04MI3', '115000226284-KAMW04MI3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-35', 'ASRS-#1', '115000226284', 'KAMW04MI2', '115000226284-KAMW04MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-36', 'ASRS-#1', '115000226284', 'KAMW04MI1', '115000226284-KAMW04MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-37', 'ASRS-#1', '115000226284', 'KAMW06MI2', '115000226284-KAMW06MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-38', 'ASRS-#1', '115000226284', 'KAMW06MI3', '115000226284-KAMW06MI3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-39', 'ASRS-#1', '115000226284', 'KAMW02MI2', '115000226284-KAMW02MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('1-40', 'ASRS-#1', '115000226284', 'KAMW06MI4', '115000226284-KAMW06MI4', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-01', 'ASRS-#2', '115000226284', 'KWLSOHF2A', '115000226284-KWLSOHF2A', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-02', 'ASRS-#2', '115000226284', 'KWLSOHF4B', '115000226284-KWLSOHF4B', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-03', 'ASRS-#2', '115000226284', 'KASW12MI3', '115000226284-KASW12MI3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-04', 'ASRS-#2', '115000226284', 'KASW12MI1', '115000226284-KASW12MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-05', 'ASRS-#2', '115000226286', 'KWLSOHL01', '115000226286-KWLSOHL01', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-06', 'ASRS-#2', '115000226284', 'KASW03VAA', '115000226284-KASW03VAA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-07', 'ASRS-#2', '115000226286', 'KWLSOHL03', '115000226286-KWLSOHL03', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-08', 'ASRS-#2', '115000226285', 'KWLSOHL02', '115000226285-KWLSOHL02', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-09', 'ASRS-#2', '115000226284', 'KWLSOHL04', '115000226284-KWLSOHL04', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-10', 'ASRS-#2', '115000226284', 'KWLSOHDEF', '115000226284-KWLSOHDEF', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-11', 'ASRS-#2', '115000226284', 'KASW05MIA', '115000226284-KASW05MIA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-12', 'ASRS-#2', '115000226285', 'KWLSOHFEA', '115000226285-KWLSOHFEA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-13', 'ASRS-#2', '115000226284', 'KASW09MI2', '115000226284-KASW09MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-14', 'ASRS-#2', '115000226284', 'KWLSOHF3B', '115000226284-KWLSOHF3B', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-15', 'ASRS-#2', '115000226285', 'KASW09MI1', '115000226285-KASW09MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-16', 'ASRS-#2', '115000226285', 'KASW13MI2', '115000226285-KASW13MI2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-17', 'ASRS-#2', '115000226284', 'KWLSOHFNA', '115000226284-KWLSOHFNA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-18', 'ASRS-#2', '115000226284', 'KASW09MI3', '115000226284-KASW09MI3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-19', 'ASRS-#2', '115000226284', 'KASW13MI1', '115000226284-KASW13MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-20', 'ASRS-#2', '115000226284', 'KASW15MI1', '115000226284-KASW15MI1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-21', 'ASRS-#2', '115000226284', 'KASW10MIA', '115000226284-KASW10MIA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-22', 'ASRS-#2', '115000226284', 'KASW06ET2', '115000226284-KASW06ET2', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-23', 'ASRS-#2', '115000226284', 'KASW06ET1', '115000226284-KASW06ET1', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-24', 'ASRS-#2', '115000226284', 'KASW06ET4', '115000226284-KASW06ET4', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-25', 'ASRS-#2', '115000226284', 'KASW06ET3', '115000226284-KASW06ET3', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-26', 'ASRS-#2', '115000226284', 'KASW06ET6', '115000226284-KASW06ET6', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-27', 'ASRS-#2', '115000226284', 'KASW04MIA', '115000226284-KASW04MIA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-28', 'ASRS-#2', '115000226285', 'KASW06ET5', '115000226285-KASW06ET5', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-29', 'ASRS-#2', '115000226284', 'KASW14MIA', '115000226284-KASW14MIA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-30', 'ASRS-#2', '115000226284', 'KASW08LAA', '115000226284-KASW08LAA', 0, 0); +INSERT INTO `tbl_app_e_location_config` VALUES ('2-31', 'ASRS-#2', '115000226284', 'KASW16MIA', '115000226284-KASW16MIA', 0, 0); -- ---------------------------- -- Table structure for tbl_app_e_location_config_last @@ -543,261 +1046,4111 @@ 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'); +INSERT INTO `tbl_app_goods` VALUES ('0007244', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.194, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0007246', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.235, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0009262', 'BEARING CONE', 'PC', '直接物料', 'CLC', 2.645, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0020639', 'ADAPTER-PIPE', 'PC', '直接物料', 'CLC', 0.045, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0026453', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.174, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0026454', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.084, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0032143', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.099, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0045933', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.109, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0046683', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.046, 'KG', '140', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0057898', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 90, 'G', '68', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0058593', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '230', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0090008', 'SETSCREW-SOCKET', 'PC', '直接物料', 'CLC', 0.004, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0300060', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.442, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0300061', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 0.915, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0307962', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 42, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0308194', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.071, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0308535', 'BOLT-LOCKING', 'PC', '直接物料', 'CLC', 0.019, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0312666', 'ROD', 'PC', '直接物料', 'CLC', 0.025, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0323631', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.146, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0324036', 'ADAPTOR - ELBOW', 'PC', '直接物料', 'CLC', 0.17, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0330695', 'SCREW-FLAT HEAD', 'PC', '直接物料', 'CLC', 9, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0333168', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.089, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0338248', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.017, 'KG', '170', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0341994', 'PIN', 'PC', '直接物料', 'CLC', 17, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0343557', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.024, 'KG', '550', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0367232', 'ROD END-SPECIAL', 'PC', '直接物料', 'CLC', 28, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0396315', 'PIN', 'PC', '直接物料', 'CLC', 0.018, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0398557', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.019, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0617540', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.005, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0618408', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.21, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0618827', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.583, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0619455', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '325', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0619458', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0672551', 'CLIP', 'PC', '直接物料', 'CLC', 0.021, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0673045', 'CLIP', 'PC', '直接物料', 'CLC', 0.054, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0822817', 'FASTENER', 'PC', '直接物料', 'CLC', 0.392, 'G', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0858091/HE', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.045, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0897960', 'WASHER', 'PC', '直接物料', 'CLC', 0.013, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0900744', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.242, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0910079', 'PLUG', 'PC', '直接物料', 'CLC', 9, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0910081', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.017, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0919035', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.062, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0919071', 'SEAL-HORN BUTTON', 'PC', '直接物料', 'CLC', 0.012, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0925524', 'BOLT', 'PC', '直接物料', 'CLC', 0.087, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0926629', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 20, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0932065/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.03, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0932068/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.035, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0950913', 'CLIP', 'PC', '直接物料', 'CLC', 0.019, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0951260', 'SETSCREW-SOCKET', 'PC', '直接物料', 'CLC', 0.6, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0951678/HE', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.006, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0965866/HE', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.035, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0966166', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0966467/HE', 'WASHER', 'PC', '直接物料', 'CLC', 0.18, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0974896', 'SPACER', 'PC', '直接物料', 'CLC', 0.036, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0990169', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.126, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0993001/HE', 'CLIP', 'PC', '直接物料', 'CLC', 0.016, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0993645/HE', 'LAYARD CABLE', 'PC', '直接物料', 'CLC', 0.007, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0993649', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.021, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0A2926', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 11, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0L0478', 'BOLT', 'PC', '直接物料', 'CLC', 0.03, 'KG', '375', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0S1571', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.032, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0S1585', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.051, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0S1587', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.058, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0S1589', 'BOLT', 'PC', '直接物料', 'CLC', 0.098, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0S1592', 'BOLT', 'PC', '直接物料', 'CLC', 81, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0S1604', 'BOLT', 'PC', '直接物料', 'CLC', 0.081, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0S1621', 'BOLT', 'PC', '直接物料', 'CLC', 0.04, 'KG', '310', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0S1625', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.126, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('0V0375', 'BOLT', 'PC', '直接物料', 'CLC', 0.108, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1003237', 'GROMMET', 'PC', '直接物料', 'CLC', 0.004, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1003245', 'LAMP-MINIATURE', 'PC', '直接物料', 'CLC', 0.002, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1004336', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.047, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1004838', 'BOLT-FLANGE HEAD', 'PC', '直接物料', 'CLC', 9, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1009992', 'WASHER', 'PC', '直接物料', 'CLC', 0.007, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1013121', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 79, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1013129', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.04, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1017178', 'BOLT-FLANGE HEAD', 'PC', '直接物料', 'CLC', 0.049, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1017396', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 0.047, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1017401', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 0.023, 'KG', '325', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1017402', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 39, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1024139', 'SPACER', 'PC', '直接物料', 'CLC', 0.161, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1027886/HE', 'SLEEVE', 'PC', '直接物料', 'CLC', 0.137, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1029383', 'PLATE', 'PC', '直接物料', 'CLC', 90, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1030010', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.159, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1031107', 'SCREW-MACHINE', 'PC', '直接物料', 'CLC', 2, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1031592', 'PLATE', 'PC', '直接物料', 'CLC', 0.609, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1035678', 'SWITCH AS-ROTARY', 'PC', '直接物料', 'CLC', 0.258, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1035796', 'PIN', 'PC', '直接物料', 'CLC', 0.07, 'KG', '85', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1042091', 'SCREW-TAPPING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1043308', 'SPRING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1044980', 'ELBOW AS', 'PC', '直接物料', 'CLC', 0.146, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1045603', 'BOLT', 'PC', '直接物料', 'CLC', 11, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1046202', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 26, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1047419', 'PLATE AS-RH', 'PC', '直接物料', 'CLC', 0.686, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1047429', 'PLATE', 'PC', '直接物料', 'CLC', 0.183, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1047740', 'PLATE AS-LH', 'PC', '直接物料', 'CLC', 0.699, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1048655', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.77, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1051866', 'CLIP', 'PC', '直接物料', 'CLC', 0.089, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1053477', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 0.035, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1053480', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 0.005, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1053481', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 13, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1053482', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 0.012, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1053484', 'BOLT-HEX SKT HD', 'PC', '直接物料', 'CLC', 0.028, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1053485', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 64, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1056491', 'BOLT-ADJUSTING', 'PC', '直接物料', 'CLC', 0.175, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1057167', 'ADAPTER GP', 'PC', '直接物料', 'CLC', 0.142, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1060800', 'CONNECTOR GP-BSC', 'PC', '直接物料', 'CLC', 0.168, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1061242', 'SPACER', 'PC', '直接物料', 'CLC', 0.029, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1064175', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.224, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1064496', 'BRACKET AS', 'PC', '直接物料', 'CLC', 21, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1064684', 'BRACKET', 'PC', '直接物料', 'CLC', 0.342, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1065074', 'ADAPTER-SPECIAL', 'PC', '直接物料', 'CLC', 0.42, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1068715', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.598, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1070269', 'BOLT-HEAD', 'PC', '直接物料', 'CLC', 0.023, 'KG', '430', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1071716', 'BOLT-HEX SKT HD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1075014', 'KNOB', 'PC', '直接物料', 'CLC', 0.013, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1078265', 'TEE AS-SWIVEL', 'PC', '直接物料', 'CLC', 0.44, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1081610', 'CLAMP', 'PC', '直接物料', 'CLC', 0.217, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1081782', 'BOLT-SOCKET HD', 'PC', '直接物料', 'CLC', 0.087, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1082949', 'STUD', 'PC', '直接物料', 'CLC', 0.15, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1083589', 'SPACER', 'PC', '直接物料', 'CLC', 0.56, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1086709/HE', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.025, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1090361', 'FILM-INST', 'PC', '直接物料', 'CLC', 0.002, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1093001', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.032, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1094577', 'PINION-DIF BEVEL', 'PC', '直接物料', 'CLC', 0.776, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1094580', 'GEAR-DIFF BEVEL', 'PC', '直接物料', 'CLC', 2.95, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1106241', 'BRACKET', 'PC', '直接物料', 'CLC', 0.129, 'KG', '17', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1106923/H', 'SPACER', 'PC', '直接物料', 'CLC', 0.152, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1108827', 'RECEIVER AS', 'PC', '直接物料', 'CLC', 0.144, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1114627', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.01, 'KG', '800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1114871/HE', 'RELAY', 'PC', '直接物料', 'CLC', 0.065, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1117077', 'DISC - THRUST', 'PC', '直接物料', 'CLC', 0.025, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1119251', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 7.58, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1121817', 'VALVE-BALL', 'PC', '直接物料', 'CLC', 0.551, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1123926', 'BOLT', 'PC', '直接物料', 'CLC', 0.345, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1123927', 'BOLT', 'PC', '直接物料', 'CLC', 0.295, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1123928', 'BOLT', 'PC', '直接物料', 'CLC', 0.571, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1123929', 'BOLT', 'PC', '直接物料', 'CLC', 0.49, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1123931', 'BOLT', 'PC', '直接物料', 'CLC', 0.51, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1124159', 'MOUNT AS.', 'PC', '直接物料', 'CLC', 0.145, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1129164', 'BOOT', 'PC', '直接物料', 'CLC', 0.023, 'KG', '55', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1130919', 'BOLT-HEX SKT HD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1138373', 'SCREW-BUTTON HD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1138694', 'BOLT-FLANGE HEAD', 'PC', '直接物料', 'CLC', 0.008, 'KG', '550', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1139048', 'BAFFLE', 'PC', '直接物料', 'CLC', 63, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1140063', 'PLATE-INST', 'PC', '直接物料', 'CLC', 3.88, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1140359', 'RETAINER AS-GET', 'PC', '直接物料', 'CLC', 29, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1146099', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.358, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1146658', 'WASHER - HARD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '6000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1149281', 'SWITCH AS-PRESS', 'PC', '直接物料', 'CLC', 64, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1151958', 'STUD', 'PC', '直接物料', 'CLC', 49, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1152039', 'BOSS', 'PC', '直接物料', 'CLC', 0.146, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1153580', 'PLATE', 'PC', '直接物料', 'CLC', 0.21, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1155411/V', 'ELBOW-90 degree ORFS', 'PC', '直接物料', 'CLC', 0.184, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1155774/V', 'LAMP AS', 'PC', '直接物料', 'CLC', 0.05, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1160118/HE', 'CLIP', 'PC', '直接物料', 'CLC', 0.012, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1161965', 'BELT GP-SEAT', 'PC', '直接物料', 'CLC', 1.501, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1163715', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 41.5, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1163720', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.365, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1164491', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.068, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1165710', 'GROMMET', 'PC', '直接物料', 'CLC', 0.005, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1165763', 'NUT-CLIP', 'PC', '直接物料', 'CLC', 7, 'G', '98', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1166952/EY', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1171266/EY', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.005, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1171385', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.005, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1176095', 'ROD', 'PC', '直接物料', 'CLC', 0.04, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1177734', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.77, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1180424', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.502, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1183534', 'SWITCH AS-MAG', 'PC', '直接物料', 'CLC', 0.205, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1186878', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.099, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1187313', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.148, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1189573', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 0.032, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1189587', 'CAM-LATCH', 'PC', '直接物料', 'CLC', 0.034, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1196723', 'FITTING', 'PC', '直接物料', 'CLC', 16, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1213307', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 0.069, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1214345/EY', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.001, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1214405/EY', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1215908', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.094, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1220450', 'GROMMET', 'PC', '直接物料', 'CLC', 0.021, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1223608', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.218, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1224026/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.07, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1229760', 'FILM-BLANK STOCK', 'PC', '直接物料', 'CLC', 1.231, 'G', '1312', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1230858', 'PULLEY-ALT', 'PC', '直接物料', 'CLC', 0.77, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1232169/HE', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.114, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1232511/HE', 'TEE-ORFS', 'PC', '直接物料', 'CLC', 0.118, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1233688', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.103, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1233689', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.297, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1233692', 'ARM', 'PC', '直接物料', 'CLC', 9, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1233695', 'PLATE', 'PC', '直接物料', 'CLC', 0.297, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1234003', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 88, 'G', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1234618', 'COVER', 'PC', '直接物料', 'CLC', 41, 'G', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1234750', 'VALVE GP-CHECK-E', 'PC', '直接物料', 'CLC', 46, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1240174', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.026, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1241035/HE', 'FITTING-ORFS', 'PC', '直接物料', 'CLC', 0.53, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1242528/EY', 'SPACER', 'PC', '直接物料', 'CLC', 0.018, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1243019', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.05, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1244287', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.17, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1244288', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.325, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1245814', 'BLOCK GP-JCT -A', 'PC', '直接物料', 'CLC', 0.527, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1245836', 'BUSHING', 'PC', '直接物料', 'CLC', 1.335, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1246256', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 29, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1246257', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 39, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1246260', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 57, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1246262', 'CLAMP - HOSE', 'PC', '直接物料', 'CLC', 0.036, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1246264', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.053, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1246265', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 62, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1258534', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.15, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1259774', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.193, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1262565/X', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.058, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1262728', 'CONE-SPL TAPERED', 'PC', '直接物料', 'CLC', 0.759, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1268928', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 46, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1270929', 'CLAMP-V-BAND', 'PC', '直接物料', 'CLC', 0.208, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1271960', 'SCREW-FLAT HEAD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1274833', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.241, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1278609', 'CORD AS-JW', 'PC', '直接物料', 'CLC', 0.35, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1279323', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.069, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1280820/V', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.345, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1280957', 'WASHER', 'PC', '直接物料', 'CLC', 0.38, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1288678/EY', 'SPACER', 'PC', '直接物料', 'CLC', 0.05, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1292220', 'SETSCREW-SOCKET', 'PC', '直接物料', 'CLC', 0.145, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1293173', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 21, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1293178', 'LOCKNUT-THIN', 'PC', '直接物料', 'CLC', 0.002, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1293180', 'LOCKNUT-JAM', 'PC', '直接物料', 'CLC', 0.015, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1295049', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.478, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1296400', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.454, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1297261', 'PLATE', 'PC', '直接物料', 'CLC', 0.205, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1301916', 'STUD-BALL ( GAS SPRING CYLINDER )', 'PC', '直接物料', 'CLC', 10, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1302792', 'SCREW-HEX', 'PC', '直接物料', 'CLC', 6, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1305300', 'CLIP', 'PC', '直接物料', 'CLC', 0.013, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1305301', 'CLIP', 'PC', '直接物料', 'CLC', 0.023, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1309984', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.107, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1313025', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.417, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1313539', 'SCREW-FLAT HEAD', 'PC', '直接物料', 'CLC', 0.012, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1313540', 'LOCKNUT-JAM', 'PC', '直接物料', 'CLC', 0.005, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1313736', 'SOCKET GP-BASIC', 'PC', '直接物料', 'CLC', 1.772, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1313987', 'SCREW-PAN HEAD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1314428', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.525, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1315171', 'CLIP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1317547/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.02, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1321805/HE', 'STRAP AS-GROUND', 'PC', '直接物料', 'CLC', 0.24, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1321806/HE', 'STRAP AS-GROUND', 'PC', '直接物料', 'CLC', 0.29, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1325789', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.026, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1326598', 'BEARING CUP', 'PC', '直接物料', 'CLC', 2.215, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1327077', 'SWITCH AS-LIMIT', 'PC', '直接物料', 'CLC', 0.03, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1327551/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.009, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1328487', 'NUT-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1332905', 'RING-RETAINING', 'PC', '直接物料', 'CLC', 92, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1336934', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.043, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1337810', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.028, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1340165', 'WASHER', 'PC', '直接物料', 'CLC', 0.032, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1342540', 'RECEPTACLE AS', 'PC', '直接物料', 'CLC', 0.013, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1343344/HE', 'STRAP AS', 'PC', '直接物料', 'CLC', 0.165, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1345245', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.027, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1345645', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 45, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1349569', 'SWITCH AS-TURN', 'PC', '直接物料', 'CLC', 0.314, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1350450', 'PLATE', 'PC', '直接物料', 'CLC', 0.374, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1350451', 'PLATE', 'PC', '直接物料', 'CLC', 0.522, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1350452', 'PLATE', 'PC', '直接物料', 'CLC', 0.419, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1350453', 'PLATE R03-09-C01', 'PC', '直接物料', 'CLC', 0.516, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1352145', 'BRACKET', 'PC', '直接物料', 'CLC', 68, 'G', '26', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1352543', 'BOOT', 'PC', '直接物料', 'CLC', 6.7, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1358575', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.048, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1358577/V', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.065, 'KG', '180', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1358578', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.061, 'KG', '140', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1361122', 'SPACER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1362967/HE', 'SEAL O RING', 'PC', '直接物料', 'CLC', 0.024, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1366330', 'SEAL', 'PC', '直接物料', 'CLC', 66, 'G', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1366331', 'SEAL', 'PC', '直接物料', 'CLC', 1.68, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1366417', 'CLAMP', 'PC', '直接物料', 'CLC', 0.831, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1368308', 'PIN-GET', 'PC', '直接物料', 'CLC', 0.181, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1369699', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.196, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1379410', 'CLAMP', 'PC', '直接物料', 'CLC', 0.144, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1383816', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 39, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1385044/HE', 'FLANGE', 'PC', '直接物料', 'CLC', 0.767, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1387500', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.154, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1388454', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1391398/X', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.06, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1393785', 'RIVET-POP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1400860/HE', 'STRAP AS-GROUND', 'PC', '直接物料', 'CLC', 0.36, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1401088', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.084, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1411668', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 26, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1413983/H', 'SPACER', 'PC', '直接物料', 'CLC', 0.071, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1416343', 'SPRING', 'PC', '直接物料', 'CLC', 0.23, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1420485', 'NUT-THIN', 'PC', '直接物料', 'CLC', 0.01, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1421657', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.086, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1423953', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.041, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1429242', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.3, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1431284', 'SCREW-BUTTON HEAD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1433158', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.066, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1434535', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.055, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1434536', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.041, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1434792', 'BUMPER', 'PC', '直接物料', 'CLC', 0.8, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1440367', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.065, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1443679', 'OVER-WORK LIGHT', 'PC', '直接物料', 'CLC', 0.034, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1444613', 'ANGLE AS', 'PC', '直接物料', 'CLC', 0.095, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1446695', 'NUT', 'PC', '直接物料', 'CLC', 0.122, 'KG', '29', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1447090', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.115, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1447091', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 98, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1448344', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.034, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1452264', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 27, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1454212', 'INDICATOR - AIR', 'PC', '直接物料', 'CLC', 41, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1456669', 'SCREW-SELF TAP', 'PC', '直接物料', 'CLC', 0.003, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1461680', 'WASHER', 'PC', '直接物料', 'CLC', 0.567, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1461842', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.347, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1461843', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.374, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1465230', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.029, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1465790', 'FLANGE', 'PC', '直接物料', 'CLC', 0.514, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1466581', 'BOLT-FLAT HEAD', 'PC', '直接物料', 'CLC', 0.112, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1466747', 'FILM-24V', 'PC', '直接物料', 'CLC', 0.001, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1470385', 'CLIP', 'PC', '直接物料', 'CLC', 0.015, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1471773', 'BREAKER AS-CKT', 'PC', '直接物料', 'CLC', 0.051, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1473150', 'ANGLE AS', 'PC', '直接物料', 'CLC', 0.083, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1477142/HE', 'U-BOLT', 'PC', '直接物料', 'CLC', 0.295, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1483495', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.203, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1487841', 'SPRING', 'PC', '直接物料', 'CLC', 0.03, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488305', 'ADAPTER AS.-STR(STOR)', 'PC', '直接物料', 'CLC', 0.034, 'KG', '42', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488307', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.065, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488309', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.117, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488310', 'ADAPTER AS.', 'PC', '直接物料', 'CLC', 0.06, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488311', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.124, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488313', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.057, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488315', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.113, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488316', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.028, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488317', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.255, 'KG', '26', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488318', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.064, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488323', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.366, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488324', 'ADAPTER AS.-STR(ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.168, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488325', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.034, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488326', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.045, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488327', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.175, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488328', 'ADAPTER AS - STR (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.153, 'KG', '52', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488330', 'CONNECTOR AS.', 'PC', '直接物料', 'CLC', 0.332, 'KG', '21', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488333', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.328, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488334', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.401, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488335', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.244, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488336', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.045, 'KG', '165', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488337', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.032, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488338', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.084, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488339', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.277, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488340', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.071, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488341', 'ADAPTER AS - STR (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.171, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488342', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.116, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488344', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.28, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488345', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.105, 'KG', '96', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488346', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.217, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488347', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.38, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488351', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.058, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488352', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.547, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488353', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.086, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488354', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.107, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488355', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.448, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488356', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.668, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488357', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.55, 'KG', '13', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488358', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.2, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488359', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.423, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488360', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.561, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488361', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.092, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488362', 'ADAPTER AS-ELBOW 90 DEG', 'PC', '直接物料', 'CLC', 0.532, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488363', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.106, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488364', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.128, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488365', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.102, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488367', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.102, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488368', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.094, 'KG', '96', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488369', 'ADAPTER AS ELBOW 90 DEG', 'PC', '直接物料', 'CLC', 0.06, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488370', 'ADAPTER AS - ELBOW 90 DEG (ORFS)', 'PC', '直接物料', 'CLC', 0.131, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488371', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.084, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488372', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.248, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488373', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.64, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488374', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.126, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488375', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.186, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488376', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.413, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488377', 'ADAPTER AS - ELBOW 90 DEG (ORFS)', 'PC', '直接物料', 'CLC', 0.132, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488378', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.101, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488380', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.145, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488381', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.329, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488382', 'ADAPTER AS - ELBOW 90 DEG (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.344, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488383', 'ADAPTER AS - ELBOW AS (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.203, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488387', 'ADAPTER', 'PC', '直接物料', 'CLC', 1.387, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488388', 'ADAPTER AS.', 'PC', '直接物料', 'CLC', 0.339, 'KG', '28', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488390', 'ADAPTER AS - ELBOW 90 DEG (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.27, 'KG', '34', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488392', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.366, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488393', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.239, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488395', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.03, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488405', 'PLUG AS-EXT HEX', 'PC', '直接物料', 'CLC', 0.018, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488406', 'PLUG AS LD STOR', 'PC', '直接物料', 'CLC', 0.118, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488407', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.024, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488410', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.066, 'KG', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488411', 'PLUG AS-STOR', 'PC', '直接物料', 'CLC', 0.045, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488412', 'REDUCER AS', 'PC', '直接物料', 'CLC', 0.105, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488416', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 2, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488417', 'REDUCER AS.-ORFS', 'PC', '直接物料', 'CLC', 0.066, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488420', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.177, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488422', 'TEE AS.-ORFS', 'PC', '直接物料', 'CLC', 0.679, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488423', 'TEE AS - ORFS', 'PC', '直接物料', 'CLC', 0.145, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488424', 'TEE AS.-ORFS', 'PC', '直接物料', 'CLC', 0.122, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488426', 'TEE AS.-ORFS', 'PC', '直接物料', 'CLC', 0.157, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488427', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.193, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488428', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.213, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488429', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.673, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488431', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.69, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488433', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.126, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488434', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.126, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488435', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.124, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488436', 'ADAPTER AS. -TEE', 'PC', '直接物料', 'CLC', 0.211, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488439', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.156, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488440', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.425, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488441', 'TEE AS-ORFS', 'PC', '直接物料', 'CLC', 0.342, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488442', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.655, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488443', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.16, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488444', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.167, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488445', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.688, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488446', 'ADAPTER AS - TEE (ORFS)', 'PC', '直接物料', 'CLC', 0.323, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488448', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.073, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488449', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.547, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488455', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.303, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1488457', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.142, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1492065', 'SPRING', 'PC', '直接物料', 'CLC', 0.189, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1492612', 'RELAY', 'PC', '直接物料', 'CLC', 0.288, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1495452', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.102, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1496371', 'SWITCH AS', 'PC', '直接物料', 'CLC', 0.054, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1497738', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.049, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1501280', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.168, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503024', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.05, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503028', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.362, 'KG', '27', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503033', 'ADAPTER AS - ELBOW 45 DEG (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 73, 'G', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503035', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.326, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503036', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.169, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503037', 'ELBOW AS', 'PC', '直接物料', 'CLC', 0.196, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503055', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.392, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503058', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.113, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503061', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.18, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503063', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.445, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503071', 'REDUCER AS', 'PC', '直接物料', 'CLC', 81, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503073', 'PLUG AS.-ORFS(EXTERNAL HEX)', 'PC', '直接物料', 'CLC', 0.238, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1503074', 'ORIFICE AS', 'PC', '直接物料', 'CLC', 0.064, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504027', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.14, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504031', 'ADAPTER AS - TEE (ORFS)', 'PC', '直接物料', 'CLC', 0.378, 'KG', '28', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504033', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.546, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504034', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.158, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504037', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.23, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504042', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.077, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504043', 'ADAPTER AS STR ORFS TO STOR', 'PC', '直接物料', 'CLC', 0.063, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504044', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.073, 'KG', '112', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504046', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 56, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504047', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.048, 'KG', '149', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504048', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.254, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1504049', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.427, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1505430', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.28, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1505785/HE', 'DOWEL', 'PC', '直接物料', 'CLC', 0.002, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1505968', 'ADAPTER AS - TEE (ORFS)', 'PC', '直接物料', 'CLC', 0.103, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1512184', 'PLATE AS.', 'PC', '直接物料', 'CLC', 1, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1515520', 'WASHER', 'PC', '直接物料', 'CLC', 0.09, 'KG', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1524700', 'VALVE-CHECK', 'PC', '直接物料', 'CLC', 0.028, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1525430', 'LOCK GP-HYD CONT', 'PC', '直接物料', 'CLC', 0.193, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1526824', 'KNOB AS-BLADE', 'PC', '直接物料', 'CLC', 81, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1526825', 'KNOB AS-BLADE', 'PC', '直接物料', 'CLC', 82, 'G', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1528340', 'VALVE GP-SOL', 'PC', '直接物料', 'CLC', 0.523, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1532767', 'VALVE AS-BALL', 'PC', '直接物料', 'CLC', 0.266, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1533061', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 50, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536232', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.295, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536237', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.331, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536241', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.139, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536242', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.386, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536249', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.149, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536252', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.204, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536256', 'ADAPTER AS.- ELBOW 45 DEG', 'PC', '直接物料', 'CLC', 0.215, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536259', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.466, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1536260', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.431, 'KG', '17', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1538462', 'CLIP-TOP', 'PC', '直接物料', 'CLC', 0.219, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1538463', 'CLIP-BOTTOM', 'PC', '直接物料', 'CLC', 0.162, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1541580', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.035, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1546626', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.089, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1549025', 'VALVE-SAMPLING', 'PC', '直接物料', 'CLC', 45, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1552026', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.436, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1552027', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.651, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1552259', 'WEDGE-PLUG', 'PC', '直接物料', 'CLC', 0.002, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1552264', 'PLUG AS-CONN', 'PC', '直接物料', 'CLC', 0.015, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1552267', 'PLUG AS-CONN', 'PC', '直接物料', 'CLC', 0.006, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1552286', 'PINION', 'PC', '直接物料', 'CLC', 1.43, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1553502', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 84, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1553504', 'ADAPTER AS--ELBOW 45 DEG', 'PC', '直接物料', 'CLC', 0.198, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1556258', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.27, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1557321', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.089, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1557864/H', 'SPACER', 'PC', '直接物料', 'CLC', 0.23, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1560283', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 20, 'G', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1563815', 'PLATE - IDENT', 'PC', '直接物料', 'CLC', 0.01, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1564000', 'HOSE', 'PC', '直接物料', 'CLC', 0.238, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1564281', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.116, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1564974', 'BOLT-CARRIAGE', 'PC', '直接物料', 'CLC', 0.07, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1565782', 'SPACER', 'PC', '直接物料', 'CLC', 0.037, 'KG', '204', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1566175', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.024, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1569427', 'LAMP-DOME LIGHT', 'PC', '直接物料', 'CLC', 0.002, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1570670', 'CAP-DUST', 'PC', '直接物料', 'CLC', 0.014, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1580851', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.162, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1591503', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.075, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1593590', 'FILM', 'PC', '直接物料', 'CLC', 1.52, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1598329', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.115, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1600564', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.118, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1601744', 'BRACKET', 'PC', '直接物料', 'CLC', 0.046, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1604989', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.129, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1606382', 'GROMMET', 'PC', '直接物料', 'CLC', 0.027, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1606820/X', 'FILM', 'PC', '直接物料', 'CLC', 0.001, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1606827/X', 'FILM-CEMA', 'PC', '直接物料', 'CLC', 0.001, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1606864/X', 'FILM-CEMA', 'PC', '直接物料', 'CLC', 0.006, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1606865/X', 'FILM-CEMA', 'PC', '直接物料', 'CLC', 0.006, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1606869/X', 'FILM-CEMA', 'PC', '直接物料', 'CLC', 0.006, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1608503', 'NUT-HEX', 'PC', '直接物料', 'CLC', 7, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1608510', 'BOLT HEX HEAD', 'PC', '直接物料', 'CLC', 0.224, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1608708', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.105, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1608742', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.037, 'KG', '260', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1608762', 'FITTING AS-ORF', 'PC', '直接物料', 'CLC', 26, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1608763', 'FITTING AS-ORF', 'PC', '直接物料', 'CLC', 0.026, 'KG', '121', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1616883', 'WASHER', 'PC', '直接物料', 'CLC', 2.269, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1617062', 'HOUSING', 'PC', '直接物料', 'CLC', 1.023, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1617063', 'SHAFT', 'PC', '直接物料', 'CLC', 94, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1617632', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 27.3, 'G', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1619916', 'Adapter As-STR', 'PC', '直接物料', 'CLC', 71.01, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1620177', 'PLUG AS-INTL HEX', 'PC', '直接物料', 'CLC', 0.013, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1622165', 'BOLT-SOCKET HEAD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1622480', 'RIVET', 'PC', '直接物料', 'CLC', 3.6, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1626802', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.085, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1627120/S', 'PIN', 'PC', '直接物料', 'CLC', 0.005, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1627449', 'CLAMP', 'PC', '直接物料', 'CLC', 0.828, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1628218', 'GASKET', 'PC', '直接物料', 'CLC', 3.06, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1628219', 'COVER', 'PC', '直接物料', 'CLC', 0.321, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1628264', 'TEE AS.', 'PC', '直接物料', 'CLC', 0.189, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1629728', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 86, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1631201', 'HORN AS-24 VDC', 'PC', '直接物料', 'CLC', 0.44, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1637233', 'SEAL D RING', 'PC', '直接物料', 'CLC', 0.016, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1637988', 'BUMPER AS.', 'PC', '直接物料', 'CLC', 48, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1638781', 'SPRING', 'PC', '直接物料', 'CLC', 59, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1640150/SV', 'SPACER-WASHER', 'PC', '直接物料', 'CLC', 0.039, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1641404', 'SPACER', 'PC', '直接物料', 'CLC', 0.024, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1643417', 'COVER', 'PC', '直接物料', 'CLC', 1.638, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1644180', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.178, 'KG', '55', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1644225', 'CLIP LOOP', 'PC', '直接物料', 'CLC', 26, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645546', 'TEE AS', 'PC', '直接物料', 'CLC', 0.167, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645555', 'ADAPTER AS, VALVE GP-MTG&', 'PC', '直接物料', 'CLC', 0.316, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645557', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.14, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645561', 'ADAPTER AS.', 'PC', '直接物料', 'CLC', 0.15, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645562', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.029, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645563', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.188, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645567', 'NIPPLE AS-QDISC', 'PC', '直接物料', 'CLC', 0.029, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645569', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.339, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645574', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.474, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645586', 'TEE AS.', 'PC', '直接物料', 'CLC', 0.176, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645589', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.166, 'KG', '57', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645590', 'VALVE AS', 'PC', '直接物料', 'CLC', 0.043, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645596', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.816, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645598', 'PLUG AS.', 'PC', '直接物料', 'CLC', 0.187, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645602', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.314, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645605', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.125, 'KG', '64', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645606', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.304, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645608', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.109, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645616', 'PLUG AS.', 'PC', '直接物料', 'CLC', 0.296, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1645619', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.045, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1646858', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.673, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1646859', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.116, 'KG', '55', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1646860', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.354, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1646873', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 47, 'G', '210', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1646874', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.105, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1647900', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.09, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1647908', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.067, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1648908', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.161, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1649869', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.11, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1649904', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.406, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1651539', 'CLIP', 'PC', '直接物料', 'CLC', 0.033, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1652273', 'VALVE AS-SHUTOFF', 'PC', '直接物料', 'CLC', 0.141, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1653928', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.027, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1653930', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 28.123, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1654388/H', 'SPACER', 'PC', '直接物料', 'CLC', 0.077, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1654854', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 2.1, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1654929', 'PLUG AS-STOR', 'PC', '直接物料', 'CLC', 0.207, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1654931', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.089, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1654933', 'Adapter AS', 'PC', '直接物料', 'CLC', 0.348, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1654934', 'PLUG AS-ORFS', 'PC', '直接物料', 'CLC', 0.038, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1657014', 'TEE AS', 'PC', '直接物料', 'CLC', 0.133, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1657951', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.029, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1659928', 'PLATE', 'PC', '直接物料', 'CLC', 0.485, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1660690', 'BLOCK AS-MTG', 'PC', '直接物料', 'CLC', 0.245, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1661498/HE', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.065, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1661880', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.233, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1661997', 'SHIM', 'PC', '直接物料', 'CLC', 0.009, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1661999', 'SHIM', 'PC', '直接物料', 'CLC', 0.245, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1662033', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 97, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1662383', 'CLAMP', 'PC', '直接物料', 'CLC', 68, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1671795', 'ADAPTER AS.-ELBOW 90 DEG', 'PC', '直接物料', 'CLC', 0.418, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1673583/HE', 'STRAPAS-GROUND', 'PC', '直接物料', 'CLC', 0.322, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1681968', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.154, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1684510', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.054, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1686514', 'SPACER', 'PC', '直接物料', 'CLC', 55, 'G', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1686890', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.29, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1686891', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.188, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1688683', 'SHAFT', 'PC', '直接物料', 'CLC', 0.134, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1690705', 'PLUG-SEAL', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1690921', 'END-ROD', 'PC', '直接物料', 'CLC', 42, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1693145', 'WIREAS', 'PC', '直接物料', 'CLC', 12, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1695414', 'CLIP', 'PC', '直接物料', 'CLC', 0.028, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1695862', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.111, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1695863', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.072, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1697397', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 39, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1697409', 'ADAPTER AS - STR (ORFS)', 'PC', '直接物料', 'CLC', 0.222, 'KG', '38', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1700966', 'TEE AS', 'PC', '直接物料', 'CLC', 87, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1700967', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.109, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1703093/LV', 'BUSHING', 'PC', '直接物料', 'CLC', 0.034, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1705123', 'PLUG AS', 'PC', '直接物料', 'CLC', 19, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1705632', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '450', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1706771', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.19, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1707068', 'SPACER', 'PC', '直接物料', 'CLC', 23, 'G', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1708553', 'BOLT-SOCKET HEAD', 'PC', '直接物料', 'CLC', 0.054, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1712210', 'BREAKER AS-CKT', 'PC', '直接物料', 'CLC', 0.076, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1712212', 'BREAKER AS.-CIRCUIT', 'PC', '直接物料', 'CLC', 0.076, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1712213', 'BREAKER AS-CKT', 'PC', '直接物料', 'CLC', 67, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1712870', 'SPACER', 'PC', '直接物料', 'CLC', 2, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1712972', 'INDICATOR-OIL', 'PC', '直接物料', 'CLC', 0.028, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1716466', 'UNION AS', 'PC', '直接物料', 'CLC', 0.191, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1716723', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.33, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1716726', 'COUPLER AS.', 'PC', '直接物料', 'CLC', 0.46, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1716729', 'VALVE AS', 'PC', '直接物料', 'CLC', 0.348, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1716731', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.069, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1718728', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.024, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1720165', 'SHAFT', 'PC', '直接物料', 'CLC', 0.284, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1720197', 'SPACER', 'PC', '直接物料', 'CLC', 0.01, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1725277', 'TEE AS, LINES GP-PT OIL', 'PC', '直接物料', 'CLC', 0.755, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1725291', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.032, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1725484', 'WASHER-RUBBER', 'PC', '直接物料', 'CLC', 0.005, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1725761', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.155, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1728121', 'SPACER', 'PC', '直接物料', 'CLC', 0.212, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1728125', 'PIN-SNAP', 'PC', '直接物料', 'CLC', 0.067, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1728591', 'NUT', 'PC', '直接物料', 'CLC', 0.005, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1731437', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.151, 'KG', '28', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1731498', 'PULLEY AS-IDLER', 'PC', '直接物料', 'CLC', 0.645, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1731583', 'RACKET AS., LINES GP-HEATER', 'PC', '直接物料', 'CLC', 0.15, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1732087', 'SPACER', 'PC', '直接物料', 'CLC', 48.989, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1737225', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.117, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1738341', 'SCREW-FLAT HEAD', 'PC', '直接物料', 'CLC', 50, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1739779', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.416, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1744181', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.04, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1745692', 'SPACER', 'PC', '直接物料', 'CLC', 45, 'G', '210', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1745907', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '140', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1746818', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 68, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1746819', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.11, 'KG', '42', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1746905/H', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.118, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1747875', 'HORN AS-24 VDC', 'PC', '直接物料', 'CLC', 0.44, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1747876', 'HORN AS-24 VDC', 'PC', '直接物料', 'CLC', 0.44, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1748131', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '3500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1749692', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.079, 'KG', '49', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1757141', 'NUT-HEX FLANGE', 'PC', '直接物料', 'CLC', 0.013, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1757895', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '210', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1757896', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1759079', 'ROD-LINK', 'PC', '直接物料', 'CLC', 0.067, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1760569', 'ADAPTOR', 'PC', '直接物料', 'CLC', 0.043, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1762945', 'FITTING-BULKHEAD', 'PC', '直接物料', 'CLC', 0.165, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1765311', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.045, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1765868', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.272, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1769237', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.047, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1770035', 'U-BOLT', 'PC', '直接物料', 'CLC', 0.16, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1770581', 'HOSE', 'PC', '直接物料', 'CLC', 0.17, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1771061', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.636, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1771713', 'ROD', 'PC', '直接物料', 'CLC', 0.263, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1781780', 'CLIP', 'PC', '直接物料', 'CLC', 0.053, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1781781', 'CLIP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1782593', 'BUMPER', 'PC', '直接物料', 'CLC', 0.03, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1782991', 'BOLT HEX HEAD', 'PC', '直接物料', 'CLC', 0.249, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1783129', 'GROMMET', 'PC', '直接物料', 'CLC', 0.115, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1783336', 'NUT-HEX FLANGE', 'PC', '直接物料', 'CLC', 0.008, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1783620', 'STRAP-CABLE DUAL', 'PC', '直接物料', 'CLC', 0.024, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1783695', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.602, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1783707', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.103, 'KG', '95', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1784190', 'SEAL', 'PC', '直接物料', 'CLC', 9.525, 'G', '21', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1785210', 'ELBOW', 'PC', '直接物料', 'CLC', 0.976, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1786450/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.173, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1790469/H', 'SPACER', 'PC', '直接物料', 'CLC', 0.069, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1791550', 'CLAMP', 'PC', '直接物料', 'CLC', 0.414, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1792138', 'SEAL', 'PC', '直接物料', 'CLC', 10, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1792139', 'FOAM (RH)', 'PC', '直接物料', 'CLC', 43, 'G', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1792140', 'FOAM (LH)', 'PC', '直接物料', 'CLC', 46, 'G', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1794814', 'PIN', 'PC', '直接物料', 'CLC', 0.001, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1804027', 'CAM', 'PC', '直接物料', 'CLC', 95, 'G', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1804028', 'BRACKET', 'PC', '直接物料', 'CLC', 44, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1805932', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.273, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1807147', 'LEVER', 'PC', '直接物料', 'CLC', 0.37, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1807451', 'WASHER - HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1809933', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.104, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1831025/HE', 'STRAP AS', 'PC', '直接物料', 'CLC', 0.18, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1833399', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.045, 'KG', '165', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1833407', 'PLUG AS-INTL HEX', 'PC', '直接物料', 'CLC', 0.013, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1833873', 'BREATHER AS.', 'PC', '直接物料', 'CLC', 26, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1837264', 'VALVE-DUAL', 'PC', '直接物料', 'CLC', 0.044, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1842420', 'ADAPTER AS-BHD', 'PC', '直接物料', 'CLC', 0.176, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1846636', 'PLATE-ENG STOP/R', 'PC', '直接物料', 'CLC', 3.18, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1846893', 'ADPTR-ELB 45 DEG', 'PC', '直接物料', 'CLC', 0.054, 'KG', '240', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1850008', 'VALVE GP-SOL', 'PC', '直接物料', 'CLC', 0.45, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1850635', 'WASHER-SOFT', 'PC', '直接物料', 'CLC', 0.024, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1851122', 'BRACKET', 'PC', '直接物料', 'CLC', 0.199, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1852245', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.286, 'KG', '13', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1852271', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.363, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1856645', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.22, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1858833', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.311, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1859356', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.039, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1863223', 'PLATEAS', 'PC', '直接物料', 'CLC', 14, 'G', '7', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1871008', 'SENDERAS', 'PC', '直接物料', 'CLC', 0.166, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1871679', 'COVER', 'PC', '直接物料', 'CLC', 1.136, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1875718/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.614, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1882461', 'VALVE GP - SOLENOID', 'PC', '直接物料', 'CLC', 0.49, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1883959', 'BRACKET', 'PC', '直接物料', 'CLC', 0.267, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1888042', 'TAG-INFORMATION', 'PC', '直接物料', 'CLC', 2, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1890108', 'O-RING COMPOUND', 'PC', '直接物料', 'CLC', 0.003, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1893158', 'SUPPRESSOR-ARC', 'PC', '直接物料', 'CLC', 0.01, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1893925/HE', 'BOLT', 'PC', '直接物料', 'CLC', 0.495, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1898772', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 27, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1898789', 'BUMPER AS', 'PC', '直接物料', 'CLC', 0.01, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1903043', 'BRACKETAS', 'PC', '直接物料', 'CLC', 0.92, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1904375', 'WASHER', 'PC', '直接物料', 'CLC', 11, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1905386', 'FILM-SAFETY', 'PC', '直接物料', 'CLC', 0.005, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1905583', 'CLIP-TOP', 'PC', '直接物料', 'CLC', 0.8, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1905584', 'CLIP-HALF TAB', 'PC', '直接物料', 'CLC', 0.286, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1909821', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.326, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1911782', 'SPACER', 'PC', '直接物料', 'CLC', 0.021, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1911783', 'SPACER', 'PC', '直接物料', 'CLC', 0.048, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1912276', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '2300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1915285', 'GROMMET', 'PC', '直接物料', 'CLC', 0.147, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1916587', 'SENSOR GP TEMP', 'PC', '直接物料', 'CLC', 39.5, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1924644', 'FILM-BLANK STOCK', 'PC', '直接物料', 'CLC', 2.705, 'G', '630', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1925017', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.066, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1925624', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.175, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1929207', 'PLUG AS', 'PC', '直接物料', 'CLC', 27, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1942555', 'TEE ASSY.', 'PC', '直接物料', 'CLC', 0.192, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1942903', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.175, 'KG', '44', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1943526', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.081, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1944121', 'SPACER', 'PC', '直接物料', 'CLC', 0.066, 'KG', '31', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1949487', 'BUMPER AS', 'PC', '直接物料', 'CLC', 0.038, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1950882', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 67, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1960711/HE', 'WASHER', 'PC', '直接物料', 'CLC', 0.065, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1962036', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.186, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1965052', 'CLIP-TOP', 'PC', '直接物料', 'CLC', 0.281, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1965053', 'CLIP-BOTTOM', 'PC', '直接物料', 'CLC', 0.218, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1973295', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.137, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1976453', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.114, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1977382', 'CLAMP', 'PC', '直接物料', 'CLC', 0.558, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1977481', 'STUD', 'PC', '直接物料', 'CLC', 60, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1980143', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.228, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1982820', 'SEAL-INTEGRAL', 'PC', '直接物料', 'CLC', 71, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1983611', 'BELT', 'PC', '直接物料', 'CLC', 0.221, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984766', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.03, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984767', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.053, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984768', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.035, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984769', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.067, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984775', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '1700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984776', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.016, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984777', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.031, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984778', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.052, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984780', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.035, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984781', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.065, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1984783', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.216, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1985438', 'BLOCK', 'PC', '直接物料', 'CLC', 0.196, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1987651', 'BRACKET AS', 'PC', '直接物料', 'CLC', 85, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1987655', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.309, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1989706', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1989812', 'SPACER', 'PC', '直接物料', 'CLC', 0.173, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1991807/HE', 'TEE', 'PC', '直接物料', 'CLC', 0.468, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1994318', 'TURNBUCKLE', 'PC', '直接物料', 'CLC', 14, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1997854', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.077, 'KG', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1999751', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.2, 'G', '960', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1999923', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.045, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1A1135', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.126, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1A1415', 'NUT', 'PC', '直接物料', 'CLC', 0.367, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1A8537', 'BOLT', 'PC', '直接物料', 'CLC', 0.136, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1B0676', 'PIN-CLEVIS', 'PC', '直接物料', 'CLC', 0.017, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1B4038', 'CUP-ROLLER BRG', 'PC', '直接物料', 'CLC', 0.775, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1B4046', 'CONE-BEARING', 'PC', '直接物料', 'CLC', 1.291, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1B5174', 'PLUG-INTL SQUARE', 'PC', '直接物料', 'CLC', 0.051, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1B8704', 'KEY-WOODRUFF', 'PC', '直接物料', 'CLC', 0.002, 'KG', '750', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1B8737', 'KEY-WOODRUFF', 'PC', '直接物料', 'CLC', 16, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1D0906', 'NUT', 'PC', '直接物料', 'CLC', 0.132, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1D4164', 'IRON-GRAB', 'PC', '直接物料', 'CLC', 0.816, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1D4627', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.315, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1D4680', 'BOLT-CARRIAGE', 'PC', '直接物料', 'CLC', 0.04, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1D5119', 'NUT-JAM', 'PC', '直接物料', 'CLC', 34, 'G', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1D5120', 'NUT-JAM', 'PC', '直接物料', 'CLC', 0.038, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1D6306', 'NUT', 'PC', '直接物料', 'CLC', 80, 'G', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1F1609', 'SPACER', 'PC', '直接物料', 'CLC', 0.113, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1F4622', 'BEARING-NEEDLE', 'PC', '直接物料', 'CLC', 8, 'G', '140', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1F5403', 'ROD END-ADJ', 'PC', '直接物料', 'CLC', 53, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1F7567', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 7, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1F7854', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.086, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1F7958', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.02, 'KG', '680', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1H3244', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1H4478', 'PIN', 'PC', '直接物料', 'CLC', 1.471, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1H7339', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1H7724', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 19, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1H8306', 'SCREW-DRAIN', 'PC', '直接物料', 'CLC', 54, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1H8720', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1J2150', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 0.118, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1J2859', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.009, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1J2860', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 1.66, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1J4757', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 3.02, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1J6762', 'BOLT-PLOW', 'PC', '直接物料', 'CLC', 0.183, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1J9671', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1K6870', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.051, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1K6872', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.018, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1L0509', 'BOLT', 'PC', '直接物料', 'CLC', 17, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1L6377', 'BUTTON-PLUG', 'PC', '直接物料', 'CLC', 0.021, 'KG', '85', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1M4543', 'GROMMET', 'PC', '直接物料', 'CLC', 0.012, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1M6120', 'NUT-BAT TERMINAL', 'PC', '直接物料', 'CLC', 5, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1M9653', 'RING', 'PC', '直接物料', 'CLC', 40, 'G', '85', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1N5549', 'CLIP', 'PC', '直接物料', 'CLC', 0.182, 'KG', '32', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P2636', 'CUP-ROLLER BRG', 'PC', '直接物料', 'CLC', 0.23, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P2662', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 0.488, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P3702', 'SEAL-RECTANGULAR', 'PC', '直接物料', 'CLC', 0.002, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P3703', 'SEAL-RECTANGULAR', 'PC', '直接物料', 'CLC', 0.002, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P3704', 'SEAL-RECTANGULAR', 'PC', '直接物料', 'CLC', 0.003, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P3705', 'SEAL-RECTANGULAR', 'PC', '直接物料', 'CLC', 0.003, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P3707', 'SEAL-RECTANGULAR', 'PC', '直接物料', 'CLC', 0.004, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P3934', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.652, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P3935', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 1.466, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4278', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.006, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4577', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.103, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4578', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.157, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4579', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.229, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4582', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.269, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4584', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.38, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4585', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.591, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4693', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.754, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P4694', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 1.375, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P5767', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.358, 'KG', '27', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P6356', 'PLATE', 'PC', '直接物料', 'CLC', 0.181, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P7009', 'CLIP', 'PC', '直接物料', 'CLC', 0.032, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P7115', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 13, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P7834', 'CUP', 'PC', '直接物料', 'CLC', 0.998, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1P7835', 'CONE-BEARING', 'PC', '直接物料', 'CLC', 2.3, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1R5396', 'BOLT', 'PC', '直接物料', 'CLC', 0.012, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1R6072/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.06, 'KG', '32', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S0994', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.034, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S1014', 'GROMMET', 'PC', '直接物料', 'CLC', 14, 'G', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S1015', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.056, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S2342', 'STRAP AS-GROUND', 'PC', '直接物料', 'CLC', 0.042, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S3184', 'CONE-ROLLER BRG', 'PC', '直接物料', 'CLC', 1.853, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S4305', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.038, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S6420', 'CLIP', 'PC', '直接物料', 'CLC', 0.034, 'KG', '55', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S9110', 'BEARING RLR AS', 'PC', '直接物料', 'CLC', 0.219, 'KG', '54', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1S9799', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 1.4, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1V6688', 'GROMMET', 'PC', '直接物料', 'CLC', 0.04, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1V7368', 'SPACER', 'PC', '直接物料', 'CLC', 17, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1W2431', 'CLAMP-V-BAND', 'PC', '直接物料', 'CLC', 0.368, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1W3962', 'SPACER', 'PC', '直接物料', 'CLC', 8, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1W9589', 'NUT-ACORN', 'PC', '直接物料', 'CLC', 0.019, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('1Y0413', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.201, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2001131', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2006345', 'MOUNT-DUALSWIVEL', 'PC', '直接物料', 'CLC', 0.013, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2011024', 'BRACKET', 'PC', '直接物料', 'CLC', 0.06, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2012184', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.177, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2012533', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 0.045, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2014340', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.043, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2015555', 'PLATE-TURNSIGNAL', 'PC', '直接物料', 'CLC', 0.001, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2017354', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.142, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2018034', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.342, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2018357', 'BRACKET', 'PC', '直接物料', 'CLC', 0.05, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2022762', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.042, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2025371/AL', 'SEAL', 'PC', '直接物料', 'CLC', 0.002, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2026473', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.134, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2030351', 'ELBOW-AIR', 'PC', '直接物料', 'CLC', 0.96, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2032287', 'CLIP', 'PC', '直接物料', 'CLC', 0.109, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2033337', 'TUBE AS.', 'PC', '直接物料', 'CLC', 0.101, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2033340', 'TUBE AS.', 'PC', '直接物料', 'CLC', 87, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2035443', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.208, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2037959', 'ADAPTER-PIPE', 'PC', '直接物料', 'CLC', 84, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2040317', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.165, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2041635/HE', 'STRAP AS-GROUND', 'PC', '直接物料', 'CLC', 0.198, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2042281', 'STRAP-CABLE', 'PC', '直接物料', 'CLC', 0.012, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2048000', 'MOUNT-TIE WRAP', 'PC', '直接物料', 'CLC', 0.017, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2052357', 'ADAPTER AS - STR (SPECIAL)', 'PC', '直接物料', 'CLC', 0.136, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2053232', 'FILM-EXTERIOR', 'PC', '直接物料', 'CLC', 0.018, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2053237', 'FILM-EXTERIOR', 'PC', '直接物料', 'CLC', 0.018, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2057048', 'INSERT-THREADED', 'PC', '直接物料', 'CLC', 0.005, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2057187', 'GOVERNORAS', 'PC', '直接物料', 'CLC', 0.472, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2057200', 'ELBOW AS-90 DEG', 'PC', '直接物料', 'CLC', 0.115, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2057299', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.03, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2062423', 'SADDLE', 'PC', '直接物料', 'CLC', 0.006, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2063599', 'LEVER', 'PC', '直接物料', 'CLC', 0.134, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2063600', 'LEVER', 'PC', '直接物料', 'CLC', 0.132, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2064669', 'VALVE-DRAIN', 'PC', '直接物料', 'CLC', 0.796, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2065017', 'WASHER-SOFT', 'PC', '直接物料', 'CLC', 0.009, 'KG', '750', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2065123', 'TEE AS-ORFS', 'PC', '直接物料', 'CLC', 0.162, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2065143', 'BOLT-SQUARE NECK', 'PC', '直接物料', 'CLC', 0.066, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2065575', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.085, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2067331', 'PLUG-DRAIN', 'PC', '直接物料', 'CLC', 0.19, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2070208/HE', 'CAP', 'PC', '直接物料', 'CLC', 0.02, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2070649', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.454, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2075370', 'CLIP', 'PC', '直接物料', 'CLC', 34, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2081628', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.182, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2081629', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.101, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2086176', 'STUD-BALL', 'PC', '直接物料', 'CLC', 14, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2087782', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.467, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2089287', 'BOLT-FLANGE HD', 'PC', '直接物料', 'CLC', 23, 'G', '225', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094573', 'CLAMP-T-BOLT SPR', 'PC', '直接物料', 'CLC', 0.066, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094575', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.068, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094578', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.069, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094579', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.073, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094580', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.114, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094582', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.07, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094586', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.11, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094588', 'LAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.081, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094589', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.081, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2094590', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.126, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2098296', 'BOLT', 'PC', '直接物料', 'CLC', 0.017, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2104458', 'ELBOW', 'PC', '直接物料', 'CLC', 0.86, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2109479', 'HOSE', 'PC', '直接物料', 'CLC', 0.22, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2117322', 'Spacer', 'PC', '直接物料', 'CLC', 0.116, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2118071', 'CAP-CLAMP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2118073', 'CAP-CLAMP', 'PC', '直接物料', 'CLC', 0.002, 'KG', '540', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2119032', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2121336', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.346, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2124174', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.005, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2126932', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.124, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2126934', 'CLAMP-T BOLT', 'PC', '直接物料', 'CLC', 99, 'G', '21', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2130455', 'SWITCH AS-TOGGLE', 'PC', '直接物料', 'CLC', 0.077, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2133745', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.171, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2135007', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.264, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2143522', 'SCREW-BUTTON HD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2144515/HE', 'ADAPTER AS-CROSS', 'PC', '直接物料', 'CLC', 0.266, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2145514', 'GROMMET', 'PC', '直接物料', 'CLC', 94, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2147566', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2147568', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.003, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2152901', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 60, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2158207', 'RACE ROLLER BRG', 'PC', '直接物料', 'CLC', 0.493, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2158209', 'BRG SPL RACE', 'PC', '直接物料', 'CLC', 1.382, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2159664', 'NUT AS', 'PC', '直接物料', 'CLC', 1.316, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2162211', 'CLAMP-T-BOLT', 'PC', '直接物料', 'CLC', 0.087, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2164983', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.105, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2166947', 'CLAMP-T BOLT', 'PC', '直接物料', 'CLC', 0.111, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2168309', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 50, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2174369', 'BRACKET AS', 'PC', '直接物料', 'CLC', 69, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2174541', 'DISC FRICTION', 'PC', '直接物料', 'CLC', 0.3, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2174590', 'BRACKET AS, LINES GP-FUEL -A', 'PC', '直接物料', 'CLC', 0.085, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2175449/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.054, 'KG', '180', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2176284/V', 'CORD AS-HEATER', 'PC', '直接物料', 'CLC', 0.6, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2178946', 'ELBOW', 'PC', '直接物料', 'CLC', 0.768, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2179060', 'VALVE AS', 'PC', '直接物料', 'CLC', 38, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2179902', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.3, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2180728/SV', 'SPRING', 'PC', '直接物料', 'CLC', 0.2, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2184160', 'BRACKET AS', 'PC', '直接物料', 'CLC', 91, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2184406', 'RING-WEAR', 'PC', '直接物料', 'CLC', 0.279, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2187172', 'FILM-OP SOUND', 'PC', '直接物料', 'CLC', 10, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2190314', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.137, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2190669', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.2, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2192434', 'RING-WEAR', 'PC', '直接物料', 'CLC', 0.275, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2195757/EY', 'BOSS', 'PC', '直接物料', 'CLC', 0.088, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2196485', 'LAMP GP - FLOOD', 'PC', '直接物料', 'CLC', 0.49, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2197569', 'BOLT HEX HEAD', 'PC', '直接物料', 'CLC', 0.16, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2203634', 'FILM-DRAINENG', 'PC', '直接物料', 'CLC', 1.1, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2206381', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.021, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2213405', 'SENSOR GP-PRESSURE', 'PC', '直接物料', 'CLC', 0.112, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2213525/X', 'GROMMET', 'PC', '直接物料', 'CLC', 0.014, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2218045', 'FILM-WARNING (SEATBELT)', 'PC', '直接物料', 'CLC', 0.02, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2219208', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.132, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2223487', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.103, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2226869', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 30, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2232102', 'SEAL-INTEGRAL', 'PC', '直接物料', 'CLC', 0.107, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2232459', 'VALVE GP-CHECK E', 'PC', '直接物料', 'CLC', 80, 'G', '33', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2233490', 'CLIP', 'PC', '直接物料', 'CLC', 0.04, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2240554', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 0.02, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2240672', 'FILM-WARN CYL', 'PC', '直接物料', 'CLC', 2.6, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2242323', 'BEARING NEEDLE', 'PC', '直接物料', 'CLC', 0.435, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2245445', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.046, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2245912', 'BRACKET', 'PC', '直接物料', 'CLC', 0.111, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2246820', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 2.74, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2246821', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 0.02, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2247830', 'FILM-WARN CYL', 'PC', '直接物料', 'CLC', 9.367, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2250098', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.308, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2250311', 'TEE AS-STOR', 'PC', '直接物料', 'CLC', 0.184, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2250312', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 0.02, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2253109', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2254148', 'PLATE - CE (OPTIONAL)', 'PC', '直接物料', 'CLC', 4, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2261240', 'FILM - WARNING (CRUSH)', 'PC', '直接物料', 'CLC', 9, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2261242', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 8.96, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2261274', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 9.15, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2261275', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 5.83, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2263492', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.086, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2263682/X', 'FILM-SOUND', 'PC', '直接物料', 'CLC', 0.005, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2264192', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.037, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2266583', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.086, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2269571', 'SPACER', 'PC', '直接物料', 'CLC', 10, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2274343', 'SHIM', 'PC', '直接物料', 'CLC', 0.668, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2276715', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.047, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2285009', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.005, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2287088', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.14, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2287089', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.001, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2287090', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2287091', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.002, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2287093', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2287100', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.005, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2287102', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.005, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2287316', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 0.007, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2289105', 'FILM-WARN HAND', 'PC', '直接物料', 'CLC', 0.001, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2289106', 'FILM-WARN HAND', 'PC', '直接物料', 'CLC', 0.96, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2295336', 'TEE AS', 'PC', '直接物料', 'CLC', 0.103, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2307732', 'MOUNT-TIE WRAP', 'PC', '直接物料', 'CLC', 0.008, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2310336', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.034, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2313930', 'RELAY AS', 'PC', '直接物料', 'CLC', 0.004, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2315251', 'BRACKET', 'PC', '直接物料', 'CLC', 0.17, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2321473/V', 'WASHER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2338350', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.14, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2339161', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.007, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2345013', 'SENSOR GP-TEMP', 'PC', '直接物料', 'CLC', 34, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2346681', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 62, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2349525', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.054, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2352474', 'SEAL-RECTANGULAR', 'PC', '直接物料', 'CLC', 0.005, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2353575', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.18, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2359631', 'BOLT HEX HEAD', 'PC', '直接物料', 'CLC', 0.208, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2360737', 'CYLINDER', 'PC', '直接物料', 'CLC', 0.452, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2362340', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.672, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2362356', 'HARNESS AS.', 'PC', '直接物料', 'CLC', 0.47, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2364429', 'TAG-LUBE NOTICE', 'PC', '直接物料', 'CLC', 1.36, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2364616', 'SWITCH AS- ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2364631', 'BEZEL - INSERT', 'PC', '直接物料', 'CLC', 0.005, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2365925', 'WASHER-RETAINER', 'PC', '直接物料', 'CLC', 0.176, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2368826', 'BOSS', 'PC', '直接物料', 'CLC', 0.071, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2372228', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.04, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2376094/HE', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.1, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2379736', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2379960', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.021, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2380112', 'SENSOR-TEMP', 'PC', '直接物料', 'CLC', 0.025, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2380120', 'SENSOR GP-SPD -A', 'PC', '直接物料', 'CLC', 22.7, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2384523/D', 'REFLECTOR - RED', 'PC', '直接物料', 'CLC', 0.05, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2384524/D', 'REFLECTOR - AMBER', 'PC', '直接物料', 'CLC', 0.05, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2384525/D', 'REFLECTOR - WHITE', 'PC', '直接物料', 'CLC', 0.05, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2385080', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '2400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2385081', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.012, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2385084', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2393291', 'CLAMP -HALF', 'PC', '直接物料', 'CLC', 17, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2395030', 'ADAPTER AS.', 'PC', '直接物料', 'CLC', 0.194, 'KG', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2398107', 'FUSE', 'PC', '直接物料', 'CLC', 0.015, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2400231', 'STUD-JUMP', 'PC', '直接物料', 'CLC', 0.16, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2410542', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.025, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2416158', 'PLUG-INTL HEX', 'PC', '直接物料', 'CLC', 0.027, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2416168', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.024, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2416172', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.51, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2416185', 'PLUG AS-STOR', 'PC', '直接物料', 'CLC', 0.122, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2416207', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.657, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2416208', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.589, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2416215', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.085, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2418368', 'SWITCH AS-MAG', 'PC', '直接物料', 'CLC', 0.628, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2418488', 'PLATE', 'PC', '直接物料', 'CLC', 0.108, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2419265', 'CLAMP-STEPPED', 'PC', '直接物料', 'CLC', 0.356, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2420407', 'VALVE-DRAIN', 'PC', '直接物料', 'CLC', 0.139, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2426099', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.07, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2428024', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.133, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2431277', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.028, 'KG', '270', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2431353', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.06, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2432076', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 50, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2432289', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 0.025, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2433250', 'HARNESS AS.', 'PC', '直接物料', 'CLC', 0.178, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2435821', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.052, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2436652', 'COVER', 'PC', '直接物料', 'CLC', 0.211, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2443712', 'PLUG AS-STOR', 'PC', '直接物料', 'CLC', 0.023, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2445880', 'BRACKET', 'PC', '直接物料', 'CLC', 0.237, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2452814', 'ROD', 'PC', '直接物料', 'CLC', 0.145, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2455128/HE', 'ADAPTER AS-CROSS', 'PC', '直接物料', 'CLC', 0.248, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2457603', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.708, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2458334', 'KNOB', 'PC', '直接物料', 'CLC', 68, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2458842', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.04, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2459890', 'GROMMET', 'PC', '直接物料', 'CLC', 45, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2461670', 'BAR', 'PC', '直接物料', 'CLC', 1.947, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2462686', 'ELEMENT AS-JWH', 'PC', '直接物料', 'CLC', 0.056, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2463290', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.547, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2463352', 'TUBE AS.', 'PC', '直接物料', 'CLC', 0.686, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2463375', 'PLATE', 'PC', '直接物料', 'CLC', 0.171, 'KG', '64', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2463513', 'ELEMENT AS-JWH', 'PC', '直接物料', 'CLC', 0.28, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2464311', 'GUARD-SWITCH', 'PC', '直接物料', 'CLC', 0.001, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2464996', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.014, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2466561', 'KNOB AS-RH', 'PC', '直接物料', 'CLC', 86, 'G', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2466562', 'KNOB AS-LH', 'PC', '直接物料', 'CLC', 86, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2471925', 'CLAMP-T BOLT', 'PC', '直接物料', 'CLC', 0.14, 'KG', '11', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2474928', 'WASHER-SEALING', 'PC', '直接物料', 'CLC', 2, 'G', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2478602', 'HOSE-ELBOW', 'PC', '直接物料', 'CLC', 0.22, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2480833', 'DRAIN AS', 'PC', '直接物料', 'CLC', 0.2, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2481371', 'COVER', 'PC', '直接物料', 'CLC', 0.545, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2484841', 'CLAMP-V-BAND', 'PC', '直接物料', 'CLC', 0.176, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2486174', 'STUD', 'PC', '直接物料', 'CLC', 0.149, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2489337/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.504, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2493505', 'RACE-SPHERICAL', 'PC', '直接物料', 'CLC', 97, 'G', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2495032', 'FILM - ECOSAFE', 'PC', '直接物料', 'CLC', 0.63, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2495033', 'TAG - ECOSAFE', 'PC', '直接物料', 'CLC', 1.1, 'G', '11', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2495481', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 28, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2495488', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2495492', 'GUARD-TOGGLE', 'PC', '直接物料', 'CLC', 0.016, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2495493', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2495643', 'PIN', 'PC', '直接物料', 'CLC', 1.322, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2498575', 'FILM-NO WELD', 'PC', '直接物料', 'CLC', 1.7, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2501417', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.128, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2501445', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.28, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2501458', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.685, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2501467', 'ADAPTER AS-STR (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.055, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2501482', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.102, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2501488', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.974, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2502139', 'VALVE GP MT', 'PC', '直接物料', 'CLC', 0.555, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2502784', 'STRAP AS.', 'PC', '直接物料', 'CLC', 0.261, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2512139', 'BRACKET', 'PC', '直接物料', 'CLC', 50, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2518248', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.292, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2520964', 'PLATE', 'PC', '直接物料', 'CLC', 1.033, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2520990', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 2.426, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2522157', 'FILM-TIE DOWN', 'PC', '直接物料', 'CLC', 0.012, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2533996', 'PULLEY-ALT', 'PC', '直接物料', 'CLC', 1.039, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2534347', 'VALVE AS-AIR', 'PC', '直接物料', 'CLC', 0.281, 'KG', '26', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2534627', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 0.853, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2534628', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 0.526, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2534629', 'RETAINER', 'PC', '直接物料', 'CLC', 0.383, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2546136', 'FILM-AIRTANK', 'PC', '直接物料', 'CLC', 2.72, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2549108', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.026, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2552752', 'sWITCH AS-START', 'PC', '直接物料', 'CLC', 0.209, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2553482', 'BRACKET', 'PC', '直接物料', 'CLC', 0.103, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2554732', 'ADAPTER AS.-TEE', 'PC', '直接物料', 'CLC', 0.13, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2554888', 'GUAGE AS.-O LVL', 'PC', '直接物料', 'CLC', 0.342, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2558545', 'WASHER-RUBBER', 'PC', '直接物料', 'CLC', 0.005, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2566454', 'SENSOR-TEMP', 'PC', '直接物料', 'CLC', 0.05, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2572289', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 1.82, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2578897', 'HOSE-MOLDED', 'PC', '直接物料', 'CLC', 0.213, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2579795', 'PIN,ARM AS. (RH),AXLE GO-FRONT', 'PC', '直接物料', 'CLC', 2.14, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2579796', 'PIN, ARM AS. (LH)', 'PC', '直接物料', 'CLC', 1.52, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2579799', 'PIN, AXLE GP- FRONT', 'PC', '直接物料', 'CLC', 2.022, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2583849', 'PLATE - HOMOLOGATION (IDENT)', 'PC', '直接物料', 'CLC', 0.013, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2585470', 'FUSE', 'PC', '直接物料', 'CLC', 0.011, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2588589/MX', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.127, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2588739', 'PIN, AXLE GP-FRONT', 'PC', '直接物料', 'CLC', 2.5, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2589981', 'SPACER', 'PC', '直接物料', 'CLC', 21, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2590134', 'LAMP GP-BASIC', 'PC', '直接物料', 'CLC', 0.055, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2592622', 'WASHER', 'PC', '直接物料', 'CLC', 35, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2594492', 'LOCK', 'PC', '直接物料', 'CLC', 0.344, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2594493', 'LOCK', 'PC', '直接物料', 'CLC', 0.126, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2594494', 'SHIM', 'PC', '直接物料', 'CLC', 0.004, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2594495', 'SHIM', 'PC', '直接物料', 'CLC', 8, 'G', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2594496', 'SHIM', 'PC', '直接物料', 'CLC', 16, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2597140', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.039, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2598450', 'LAMP GP -SIGNAL', 'PC', '直接物料', 'CLC', 0.4, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2599282', 'CAP-LOWER', 'PC', '直接物料', 'CLC', 4.122, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2600189', 'FILM-INDICATOR', 'PC', '直接物料', 'CLC', 2, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2601555', 'ELEMENT AS-JW', 'PC', '直接物料', 'CLC', 56, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2601556', 'ELEMENT AS-JW', 'PC', '直接物料', 'CLC', 0.22, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2601566', 'CORD AS-JW', 'PC', '直接物料', 'CLC', 0.229, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2601569', 'CORD AS-JW', 'PC', '直接物料', 'CLC', 0.209, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2601784', 'SPACER', 'PC', '直接物料', 'CLC', 34, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2606117', 'BALL STUD', 'PC', '直接物料', 'CLC', 0.921, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2606671', 'BOLT-FLANGE HEAD', 'PC', '直接物料', 'CLC', 0.014, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2609133', 'PLATE', 'PC', '直接物料', 'CLC', 0.273, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2609143', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.423, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2609149', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 64, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2609151', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.17, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2609173', 'ADAPTER AS-CROSS', 'PC', '直接物料', 'CLC', 0.254, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2609210', 'PLUG-HD STOR', 'PC', '直接物料', 'CLC', 0.023, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2609223', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.041, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2610424', 'PLATE', 'PC', '直接物料', 'CLC', 0.291, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2612286', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.112, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2613223', 'CABLE AS, WIRING GP-CAMERA', 'PC', '直接物料', 'CLC', 0.23, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2617991', 'GROMMET', 'PC', '直接物料', 'CLC', 0.032, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2618543', 'RETAINER', 'PC', '直接物料', 'CLC', 0.703, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2618547', 'LOCK', 'PC', '直接物料', 'CLC', 76, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2622603/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.07, 'KG', '85', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2627686', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.236, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2636342', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.025, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2636902', 'FILM-WARN HOT FL', 'PC', '直接物料', 'CLC', 0.02, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2636914', 'HOSE', 'PC', '直接物料', 'CLC', 0.324, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2640575', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 0.214, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2640638', 'PLATE', 'PC', '直接物料', 'CLC', 0.284, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2641152', 'PIN,ARM AS-LH,AXLE GP-FRONT', 'PC', '直接物料', 'CLC', 2, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2641155', 'PIN,ARM AS-RH', 'PC', '直接物料', 'CLC', 2.862, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2641167', 'PIN, AXLE GP- FRONT', 'PC', '直接物料', 'CLC', 2.42, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2643518/EY', 'CONNECTOR-SPL', 'PC', '直接物料', 'CLC', 0.015, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2643617', 'LOCK WASHER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2644297', 'SENSOR-TEMP', 'PC', '直接物料', 'CLC', 0.034, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2644454', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 2.627, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2649726', 'PIN, CYLINDER GP-MTG', 'PC', '直接物料', 'CLC', 1.46, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2656717', 'RETAINER', 'PC', '直接物料', 'CLC', 1.855, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2656718', 'SHIM', 'PC', '直接物料', 'CLC', 0.005, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2656719', 'SHIM', 'PC', '直接物料', 'CLC', 0.011, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2656720', 'SHIM', 'PC', '直接物料', 'CLC', 0.022, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2659125', 'RETAINER', 'PC', '直接物料', 'CLC', 97, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2659596', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.04, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2661467', 'SENSOR GP-POSN', 'PC', '直接物料', 'CLC', 73, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2661595', 'VALVE GP-CHK', 'PC', '直接物料', 'CLC', 0.5, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2662404', 'BRACKET AS', 'PC', '直接物料', 'CLC', 86, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2666049', 'DOWEL', 'PC', '直接物料', 'CLC', 0.468, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2667315', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.278, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2667650', 'ELBOW', 'PC', '直接物料', 'CLC', 0.283, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2672744', 'FUSE AS-HOLDER', 'PC', '直接物料', 'CLC', 0.08, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2673506', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.031, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2673507', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.113, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2674211/HE', 'SPACER-WASHER', 'PC', '直接物料', 'CLC', 0.016, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2677340', 'PLATE THRUST', 'PC', '直接物料', 'CLC', 0.857, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2678821', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.073, 'KG', '140', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2681507', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.5, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2681514', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.348, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2681556', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.784, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2681559', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.044, 'KG', '210', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2681646', 'ADAPTER AS-CROSS', 'PC', '直接物料', 'CLC', 0.22, 'KG', '32', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2686377/HE', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.317, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2688643/V', 'CABLE AS', 'PC', '直接物料', 'CLC', 1.63, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2694967', 'ADAPTER-STC', 'PC', '直接物料', 'CLC', 0.149, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2694970', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.4, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2694983', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.069, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2697250', 'PLATE', 'PC', '直接物料', 'CLC', 0.331, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2698248', 'RETAINER', 'PC', '直接物料', 'CLC', 0.63, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2703651', 'PLATE AS', 'PC', '直接物料', 'CLC', 2.407, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2706941', 'ETAINER', 'PC', '直接物料', 'CLC', 0.929, 'KG', '7', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2706942', 'SHIM', 'PC', '直接物料', 'CLC', 0.003, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2706943', 'SHIM', 'PC', '直接物料', 'CLC', 0.006, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2712322', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.199, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2713567', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.062, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2716763', 'BRACKET', 'PC', '直接物料', 'CLC', 0.171, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2718528', 'SHIM', 'PC', '直接物料', 'CLC', 25, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2718529', 'RETAINER', 'PC', '直接物料', 'CLC', 0.625, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2720353', 'DOWEL SPL', 'PC', '直接物料', 'CLC', 0.097, 'KG', '72', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2721491', 'WASHER THRUST', 'PC', '直接物料', 'CLC', 0.398, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2722351', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 58, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2723089', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.054, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2724978', 'SPACER', 'PC', '直接物料', 'CLC', 0.015, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2725671', 'BLOCK', 'PC', '直接物料', 'CLC', 28, 'G', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2727239', 'BLOCK AS-JCT', 'PC', '直接物料', 'CLC', 0.206, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2732457', 'RETAINER', 'PC', '直接物料', 'CLC', 0.136, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2732940', 'CLAMP', 'PC', '直接物料', 'CLC', 0.46, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2737305', 'SHIM', 'PC', '直接物料', 'CLC', 0.017, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2738666', 'SEAL D RING', 'PC', '直接物料', 'CLC', 0.015, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2738667', 'SEAL D RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2742045', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.224, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2744283', 'FILM-WARN', 'PC', '直接物料', 'CLC', 0.002, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2744284', 'FILM-WARNING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2746580/DK', 'SPACER', 'PC', '直接物料', 'CLC', 0.115, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2746717', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.05, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2746719', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 35, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2747407', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.083, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2750571', 'CAM-LATCH', 'PC', '直接物料', 'CLC', 0.022, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2750572', 'LATCH AS.', 'PC', '直接物料', 'CLC', 0.113, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2751253', 'SWITCH AS-PRESS', 'PC', '直接物料', 'CLC', 96, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2751442/HE', 'CLIP', 'PC', '直接物料', 'CLC', 0.044, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2751443/HE', 'CLIP', 'PC', '直接物料', 'CLC', 0.052, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2751444/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.03, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2754236', 'SCREW-WING', 'PC', '直接物料', 'CLC', 0.088, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2761326', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.044, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2766807', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.064, 'KG', '23', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2770742', 'VALVE-DRAIN', 'PC', '直接物料', 'CLC', 0.11, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2771873', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.04, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2774574', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.325, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2778996', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 0.155, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2784545', 'CLAMP', 'PC', '直接物料', 'CLC', 0.411, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2784876', 'RING RETAINING', 'PC', '直接物料', 'CLC', 0.066, 'KG', '17', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2785613', 'CLAMP AS.', 'PC', '直接物料', 'CLC', 0.464, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2785856/V', 'CLAMP', 'PC', '直接物料', 'CLC', 0.063, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2785921/H', 'PLUG', 'PC', '直接物料', 'CLC', 0.005, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2795268', 'SHIM', 'PC', '直接物料', 'CLC', 13, 'G', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2798929', 'CLAMP,PUMP GP-MTG&', 'PC', '直接物料', 'CLC', 0.325, 'KG', '32', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2801766', 'SLEEVE', 'PC', '直接物料', 'CLC', 0.38, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2802747', 'BOLT-HEX SKT HD', 'PC', '直接物料', 'CLC', 41, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2803093', 'FILM-OPERATOR SO', 'PC', '直接物料', 'CLC', 23, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2804244', 'SWITCH AS (24V)', 'PC', '直接物料', 'CLC', 0.028, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2804438', 'PLUG', 'PC', '直接物料', 'CLC', 0.139, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2808911', 'CLAMP-BAND(SPRING LINER)', 'PC', '直接物料', 'CLC', 29, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2808912', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.053, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2809661', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.077, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2815972', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.185, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2815974', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.167, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2815976', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.334, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2815977', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.11, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2815981', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.237, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2822628', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.018, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2823736', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.047, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2831578', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.095, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2838650', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2839796', 'CLAMP', 'PC', '直接物料', 'CLC', 0.309, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2840671', 'CLAMP-V-BAND', 'PC', '直接物料', 'CLC', 0.344, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2847774', 'BRACKET', 'PC', '直接物料', 'CLC', 43, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2848381', 'SWITCH AS-TOGGLE', 'PC', '直接物料', 'CLC', 0.074, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2849554', 'DOWEL', 'PC', '直接物料', 'CLC', 0.395, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2856124', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 30, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2856125', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.063, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2860433', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.091, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2860693', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.056, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2861338', 'PLATE', 'PC', '直接物料', 'CLC', 0.067, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2862631', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.172, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2863018', 'CLIP-TOP', 'PC', '直接物料', 'CLC', 0.236, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2863019', 'CLIP-BOTTOM', 'PC', '直接物料', 'CLC', 0.17, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2866192/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.124, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2869155', 'BOLT HEX HEAD', 'PC', '直接物料', 'CLC', 0.208, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2873049', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.054, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2875279', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.075, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2875701', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.199, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2875718', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.115, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2876155', 'LEVER', 'PC', '直接物料', 'CLC', 0.195, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2877257', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 96, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2877329', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.35, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2877337', 'CROSS AS', 'PC', '直接物料', 'CLC', 0.22, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2883678', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.193, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2883687', 'BREAKER AS-CKT', 'PC', '直接物料', 'CLC', 0.05, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2884402', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.029, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2887158', 'STUD', 'PC', '直接物料', 'CLC', 0.061, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2889442', 'ROD', 'PC', '直接物料', 'CLC', 0.019, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2890580', 'SETSCREW-SQ HD', 'PC', '直接物料', 'CLC', 0.146, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2892088', 'SEAL-PIP', 'PC', '直接物料', 'CLC', 19, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2899139', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.023, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2899354', 'CABLEAS', 'PC', '直接物料', 'CLC', 94, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2899355', 'CABLEAS', 'PC', '直接物料', 'CLC', 0.033, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2899555', 'BOLT-HEX SOCKET', 'PC', '直接物料', 'CLC', 0.015, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2901993', 'STRAP-CABLE', 'PC', '直接物料', 'CLC', 0.003, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2903922', 'COMPENSATOR', 'PC', '直接物料', 'CLC', 0.089, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2905562', 'MOUNT-DUAL', 'PC', '直接物料', 'CLC', 0.004, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2905664', 'MOUNT-FIR TREE', 'PC', '直接物料', 'CLC', 0.002, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2907514', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.058, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2919154', 'BLOCK', 'PC', '直接物料', 'CLC', 0.001, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2923198', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.026, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2924311', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.028, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2924772', 'PLATE-SUPPORT', 'PC', '直接物料', 'CLC', 0.114, 'KG', '32', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2928741', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.082, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2929277', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 46, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2929390', 'FILM-WARN CRUSH', 'PC', '直接物料', 'CLC', 13, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2929391', 'FILM-WARN CRUSH', 'PC', '直接物料', 'CLC', 2, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2930381', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.052, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2933081', 'CAM-LATCH', 'PC', '直接物料', 'CLC', 0.05, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2937546', 'PIN, CYL GP-MOUNTING&', 'PC', '直接物料', 'CLC', 0.79, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2940117', 'FILM-WARN-BELT', 'PC', '直接物料', 'CLC', 0.03, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2940691', 'BLOCK', 'PC', '直接物料', 'CLC', 0.35, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2941873', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.099, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2942318', 'COVER-TERMINAL', 'PC', '直接物料', 'CLC', 0.023, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2943313', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 46, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2945076', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.054, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2949322', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 60, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2949546', 'ADAPTER AS-CROSS', 'PC', '直接物料', 'CLC', 0.199, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2949835', 'SPACER', 'PC', '直接物料', 'CLC', 0.225, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2953839', 'PAWL', 'PC', '直接物料', 'CLC', 34, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2954155', 'BOLT-HEX SKT HD', 'PC', '直接物料', 'CLC', 9, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2961252', 'HINGE AS', 'PC', '直接物料', 'CLC', 0.291, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2965270', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.049, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2965750', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.418, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2965807', 'CLAMP-T\'BOLT SPR', 'PC', '直接物料', 'CLC', 0.059, 'KG', '17', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2966980/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.093, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2968274', 'DOWEL', 'PC', '直接物料', 'CLC', 0.059, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2971546', 'CLIP', 'PC', '直接物料', 'CLC', 0.03, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2971860', 'CLUTCH GP', 'PC', '直接物料', 'CLC', 3.554, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2972538', 'LOCK', 'PC', '直接物料', 'CLC', 96, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2973218', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 40, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2977948', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.18, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2977976', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.099, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2977987', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.032, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2978049', 'GROMMET', 'PC', '直接物料', 'CLC', 0.006, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2993330', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.02, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2993424', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.018, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2993427', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2993436', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.08, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2993437', 'BOLT', 'PC', '直接物料', 'CLC', 98, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2993439', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.038, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2993443', 'WASHER', 'PC', '直接物料', 'CLC', 0.148, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2A1162', 'GASKET', 'PC', '直接物料', 'CLC', 0.004, 'KG', '275', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2B0858', 'PLUG-NPTF', 'PC', '直接物料', 'CLC', 0.031, 'KG', '450', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2B0941', 'SPACER', 'PC', '直接物料', 'CLC', 0.028, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2B0947', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.083, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2B2404', 'CLIP', 'PC', '直接物料', 'CLC', 0.009, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2B2673', 'NUT-HEX SLOTTED', 'PC', '直接物料', 'CLC', 0.631, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2B3147', 'GASKET', 'PC', '直接物料', 'CLC', 0.005, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2B3148', 'COVER', 'PC', '直接物料', 'CLC', 0.575, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2B8293', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 9, 'G', '38', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D0591', 'RING RETAINING', 'PC', '直接物料', 'CLC', 0.007, 'KG', '17', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D0626', 'SEAL', 'PC', '直接物料', 'CLC', 8.1, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D1683', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.015, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D6516', 'BEARING ROLLER', 'PC', '直接物料', 'CLC', 0.726, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D6533', 'SEAL O RING', 'PC', '直接物料', 'CLC', 0.012, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D6642', 'BALL', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D7325', 'ADAPTER-TEE(NPTF)', 'PC', '直接物料', 'CLC', 0.109, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D8154', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 47, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D8652', 'BEARING-ALIGNING', 'PC', '直接物料', 'CLC', 0.224, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2D9454', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.941, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2F7888', 'SCREW-PAN HEAD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G0339', 'LOCK NUT', 'PC', '直接物料', 'CLC', 45.36, 'G', '291', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G0478', 'DISC', 'PC', '直接物料', 'CLC', 0.176, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G0615', 'CLAMP', 'PC', '直接物料', 'CLC', 0.129, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G0617', 'CLAMP', 'PC', '直接物料', 'CLC', 0.176, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G0659', 'BRACKET', 'PC', '直接物料', 'CLC', 0.398, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G0988', 'CAP', 'PC', '直接物料', 'CLC', 88, 'G', '37', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G1034', 'VALVE-SAFETY', 'PC', '直接物料', 'CLC', 85, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G1084', 'DISC', 'PC', '直接物料', 'CLC', 1.047, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G1133', 'GROMMET', 'PC', '直接物料', 'CLC', 0.033, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G3865', 'SHIM', 'PC', '直接物料', 'CLC', 3, 'G', '2161', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G3867', 'SHIM', 'PC', '直接物料', 'CLC', 6, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G3967', 'SPACER', 'PC', '直接物料', 'CLC', 0.557, 'KG', '22', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G3985', 'PLATE', 'PC', '直接物料', 'CLC', 0.748, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G4011', 'COLLAR', 'PC', '直接物料', 'CLC', 0.523, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G5667', 'RETAINER', 'PC', '直接物料', 'CLC', 0.165, 'KG', '63', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G5668', 'WASHER', 'PC', '直接物料', 'CLC', 0.327, 'KG', '39', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G5669', 'WASHER', 'PC', '直接物料', 'CLC', 99.792, 'G', '85', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G6396', 'NUT', 'PC', '直接物料', 'CLC', 0.29, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G6595', 'VALVE GROUP-TIRE', 'PC', '直接物料', 'CLC', 95, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G7098', 'PAD', 'PC', '直接物料', 'CLC', 0.051, 'KG', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G7106', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.528, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G7387', 'BEARING', 'PC', '直接物料', 'CLC', 0.318, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G7388', 'BEARING', 'PC', '直接物料', 'CLC', 0.408, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8572', 'WASHER', 'PC', '直接物料', 'CLC', 0.003, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8573', 'CAP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8607', 'BEARING', 'PC', '直接物料', 'CLC', 0.522, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8609', 'PIN', 'PC', '直接物料', 'CLC', 1.464, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8611', 'PIN', 'PC', '直接物料', 'CLC', 2.11, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8615', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 96, 'G', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8624', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.143, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8626', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.133, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8631', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.252, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8633', 'PIN', 'PC', '直接物料', 'CLC', 1.796, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8635', 'BEARING', 'PC', '直接物料', 'CLC', 0.267, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8738', 'BEARING', 'PC', '直接物料', 'CLC', 0.431, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8741', 'RING-METAL SEAL', 'PC', '直接物料', 'CLC', 6.55, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8742', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.118, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8767', 'WASHER', 'PC', '直接物料', 'CLC', 0.065, 'KG', '175', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8768', 'WASHER', 'PC', '直接物料', 'CLC', 49.3, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8777', 'SEAL', 'PC', '直接物料', 'CLC', 25.2, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G8793', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.272, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G9099', 'CAP', 'PC', '直接物料', 'CLC', 1.98, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G9103', 'SHIM', 'PC', '直接物料', 'CLC', 15, 'G', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G9524', 'HATCH', 'PC', '直接物料', 'CLC', 0.068, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G9789', 'GASKET', 'PC', '直接物料', 'CLC', 0.027, 'KG', '58', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G9791', 'GASKET', 'PC', '直接物料', 'CLC', 42, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2G9796', 'GASKET', 'PC', '直接物料', 'CLC', 0.03, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3740', 'BOLT (TOOLING)', 'PC', '直接物料', 'CLC', 0.134, 'KG', '85', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3786', 'NUT-JAM', 'PC', '直接物料', 'CLC', 73, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3856', 'BOLT', 'PC', '直接物料', 'CLC', 0.37, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3922', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.004, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3924', 'LOCKWASHER - INTERNAL TOOTH', 'PC', '直接物料', 'CLC', 0.007, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3925', 'LOCKWASHER-INTERNAL TOOTH (1 1/8)', 'PC', '直接物料', 'CLC', 0.01, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3926', 'LOCKWASHER - INTERNAL TOOTH', 'PC', '直接物料', 'CLC', 0.01, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3931', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3933', 'SEAL', 'PC', '直接物料', 'CLC', 9.08, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3935', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H3940', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.142, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H5001', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.2, 'G', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2H6338', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2J1020', 'SPACER', 'PC', '直接物料', 'CLC', 54, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2J3505', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.101, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2J3506', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.064, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2J6540', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.031, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2J8163', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K0337', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.054, 'KG', '230', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K0703/H', 'BAR', 'PC', '直接物料', 'CLC', 0.106, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K3019', 'CLIP', 'PC', '直接物料', 'CLC', 0.167, 'KG', '72', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K4821', 'LOCK NUT', 'PC', '直接物料', 'CLC', 30, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K4973', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.007, 'KG', '950', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K5106', 'SHIM', 'PC', '直接物料', 'CLC', 0.372, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K5109', 'GASKET', 'PC', '直接物料', 'CLC', 5, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K5830', 'BEARING-NEEDLE', 'PC', '直接物料', 'CLC', 0.02, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K7468', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.24, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K7979', 'SEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.018, 'KG', '375', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2K8257', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.006, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2L2685', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.046, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2L3331', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.062, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2M4779', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.024, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2M5685', 'BEARING-NEEDLE', 'PC', '直接物料', 'CLC', 0.133, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2M9780', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2N1931', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 60, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2N2138', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.358, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2N2139', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 0.759, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2N8928', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 74, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2P1279', 'LOCKNUT-BULKHEAD', 'PC', '直接物料', 'CLC', 0.011, 'KG', '640', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2P1293', 'LOCKNUT-BULKHEAD', 'PC', '直接物料', 'CLC', 0.045, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2P2204', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.126, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2P3628', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 78, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2P8130', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.166, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2R1600', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.13, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2R1866', 'CLAMP', 'PC', '直接物料', 'CLC', 29, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2S3440', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.029, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2S4750', 'GASKET', 'PC', '直接物料', 'CLC', 5.02, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2S5658', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.009, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2S8439', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 12, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2V1771', 'GROMMET', 'PC', '直接物料', 'CLC', 0.009, 'KG', '96', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2V2043', 'NUT-BULKHEAD', 'PC', '直接物料', 'CLC', 0.056, 'KG', '110', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2V4331', 'COLLAR', 'PC', '直接物料', 'CLC', 0.648, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2V9121', 'ADAPTER - STR (NPTF TO HOSE BEAD)', 'PC', '直接物料', 'CLC', 0.081, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2W7940', 'BRACKET', 'PC', '直接物料', 'CLC', 0.135, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2W9533', 'BOLT', 'PC', '直接物料', 'CLC', 0.001, 'KG', '450', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('2Y3812', 'CLIP', 'PC', '直接物料', 'CLC', 0.024, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3001358', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.093, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3001377', 'HARNESS AS', 'PC', '直接物料', 'CLC', 23, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3006152', 'CABLEAS', 'PC', '直接物料', 'CLC', 0.52, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3006496', 'CABLE AS.', 'PC', '直接物料', 'CLC', 0.543, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3011504/V', 'PIN AS', 'PC', '直接物料', 'CLC', 1.157, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3012980', 'SWITCH AS-TOGGLE', 'PC', '直接物料', 'CLC', 0.074, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3014497', 'BOSS', 'PC', '直接物料', 'CLC', 0.564, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3015178', 'ROD-LINKAGE', 'PC', '直接物料', 'CLC', 0.02, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3016664', 'RACKET', 'PC', '直接物料', 'CLC', 73, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3017789', 'CLIP-TOP', 'PC', '直接物料', 'CLC', 0.076, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3017790', 'CLIP-BOTTOM', 'PC', '直接物料', 'CLC', 0.06, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3023908', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.052, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3024536', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.885, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3025210', 'PLATE', 'PC', '直接物料', 'CLC', 0.828, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3026331', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 0.34, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3026343', 'PLATE', 'PC', '直接物料', 'CLC', 1.708, 'KG', '7', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3034649', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.038, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3039449', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 74, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3046792', 'PLUG', 'PC', '直接物料', 'CLC', 66, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3047252', 'PLATEAS', 'PC', '直接物料', 'CLC', 0.58, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3047415', 'HINGE AS', 'PC', '直接物料', 'CLC', 0.306, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3047417', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.103, 'KG', '28', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3047418', 'PLATE AS', 'PC', '直接物料', 'CLC', 60, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3047419', 'PLATE AS', 'PC', '直接物料', 'CLC', 72.4, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3047982', 'VALVE AS-BALL', 'PC', '直接物料', 'CLC', 0.662, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3048017', 'FITTING AS.', 'PC', '直接物料', 'CLC', 0.7, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3048018', 'ADAPTER AS.', 'PC', '直接物料', 'CLC', 0.217, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3048032', 'PLUG-STOR', 'PC', '直接物料', 'CLC', 0.053, 'KG', '108', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3048038', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.118, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3053153', 'PAWL', 'PC', '直接物料', 'CLC', 0.045, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3053159', 'PAWL', 'PC', '直接物料', 'CLC', 33, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3053347', 'WASHER THRUST', 'PC', '直接物料', 'CLC', 0.604, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3053348', 'WASHER THRUST', 'PC', '直接物料', 'CLC', 0.557, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3070047', 'FILM-LINK', 'PC', '直接物料', 'CLC', 0.006, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3071961', 'PLATE', 'PC', '直接物料', 'CLC', 0.419, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3071966', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 0.239, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3072670', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.051, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3072671', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.009, 'KG', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3074918/HE', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.51, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3075172/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.164, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3077502', 'PLATE', 'PC', '直接物料', 'CLC', 0.253, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3080291', 'HARNESSAS', 'PC', '直接物料', 'CLC', 38, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3080540', 'SHIM', 'PC', '直接物料', 'CLC', 13, 'G', '220', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3080541', 'INSERT', 'PC', '直接物料', 'CLC', 0.192, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3083527', 'SWITCH AS-TOGGLE', 'PC', '直接物料', 'CLC', 0.074, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3086303', 'STRIP-WEAR(1289655)', 'PC', '直接物料', 'CLC', 0.35, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3086403', 'BRACKETAS', 'PC', '直接物料', 'CLC', 0.12, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3089396', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.354, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3091905', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.061, 'KG', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3091906', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.027, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3094314', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.046, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3095127', 'Elbow As.', 'PC', '直接物料', 'CLC', 0.124, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3095145', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 34, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3095146', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.101, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3101898', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.082, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3104947', 'CLIP', 'PC', '直接物料', 'CLC', 0.152, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3104948', 'CLIP', 'PC', '直接物料', 'CLC', 0.126, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3105479', 'SHIM', 'PC', '直接物料', 'CLC', 0.015, 'KG', '104', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3105480', 'INSERT', 'PC', '直接物料', 'CLC', 0.225, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3106159', 'SPIDER', 'PC', '直接物料', 'CLC', 3.576, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3106179', 'PLATE', 'PC', '直接物料', 'CLC', 0.22, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3107300', 'CLIP-LOOP DUAL', 'PC', '直接物料', 'CLC', 0.015, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3110350', 'CLIP', 'PC', '直接物料', 'CLC', 0.1, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3116573', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.631, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3117845', 'VALVE-CHECK', 'PC', '直接物料', 'CLC', 0.91, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3118193', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.038, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3118290', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.039, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3120131', 'SCREW-MACHINE', 'PC', '直接物料', 'CLC', 0.01, 'KG', '108', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3121143', 'SLEEVE', 'PC', '直接物料', 'CLC', 0.04, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3126156', 'PIN, CYLINDER GP-MTG&', 'PC', '直接物料', 'CLC', 1.1, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3133472', 'TEE AS', 'PC', '直接物料', 'CLC', 0.179, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3133492', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.07, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3134130', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.206, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3134132', 'TUBE AS.', 'PC', '直接物料', 'CLC', 0.306, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3135270', 'REFLECTOR', 'PC', '直接物料', 'CLC', 0.02, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3135271', 'REFLECTOR', 'PC', '直接物料', 'CLC', 15, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3136096', 'PLATE', 'PC', '直接物料', 'CLC', 0.149, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3136098', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.484, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3139198', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.03, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3142490', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.03, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3147457', 'LOCK', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3147599', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.048, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3153232', 'LAMP AS-IND', 'PC', '直接物料', 'CLC', 61, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3155493', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 19, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3156643', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.144, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3159839', 'TEE AS', 'PC', '直接物料', 'CLC', 0.68, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3159859', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.075, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3160488', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.247, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3162631', 'BRACKET AS', 'PC', '直接物料', 'CLC', 70, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3166819', 'PLATE', 'PC', '直接物料', 'CLC', 89, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3169351', 'MOUNT-FIR TREE', 'PC', '直接物料', 'CLC', 0.003, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3171009', 'WASHER', 'PC', '直接物料', 'CLC', 0.044, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3171117', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.113, 'KG', '72', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3173164', 'CABLE AS', 'PC', '直接物料', 'CLC', 59, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3173168', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.356, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3177250', 'CAM-LATCH', 'PC', '直接物料', 'CLC', 44, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3180820', 'GROMMET', 'PC', '直接物料', 'CLC', 14, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3181178', 'SENSOR GP-SPD -A', 'PC', '直接物料', 'CLC', 86, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3182936', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.071, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3192305', 'CAM-LATCH', 'PC', '直接物料', 'CLC', 0.028, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196217', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.071, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196218', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.108, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196219', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.683, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196225', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.127, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196227', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.13, 'KG', '56', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196228', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.243, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196234', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.114, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196698', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.103, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3196699', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 48, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3200562', 'DRYER AS', 'PC', '直接物料', 'CLC', 1.27, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3203063', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.056, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3203127', 'BRACKET', 'PC', '直接物料', 'CLC', 0.26, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3208203', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.17, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3208863', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.13, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3218632', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.12, 'KG', '52', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3218640', 'CONNECTOR-NPTF', 'PC', '直接物料', 'CLC', 81, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3218642', 'PLUG AS-INTL HEX', 'PC', '直接物料', 'CLC', 0.011, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3218649', 'VALVE AS-SMPLG', 'PC', '直接物料', 'CLC', 0.045, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3218674', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.034, 'KG', '210', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3218711', 'ELEMENT AS-JW', 'PC', '直接物料', 'CLC', 0.388, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3220976', 'HOSE-HUMP', 'PC', '直接物料', 'CLC', 0.248, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3221358', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.141, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3227294', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.118, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3243210', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.111, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3243364', 'PLATE', 'PC', '直接物料', 'CLC', 0.393, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3243366', 'PLATE AS', 'PC', '直接物料', 'CLC', 1.06, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3243459', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.047, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3243471', 'BRACKET', 'PC', '直接物料', 'CLC', 0.51, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3251242', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.091, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3253780', 'SEAL D RING', 'PC', '直接物料', 'CLC', 43, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3254471', 'LAMP GP-FLOOD', 'PC', '直接物料', 'CLC', 0.419, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3258634', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.062, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3259407', 'FILM', 'PC', '直接物料', 'CLC', 0.02, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3259616', 'HOSE-HUMP', 'PC', '直接物料', 'CLC', 0.288, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3260610', 'LATCH AS', 'PC', '直接物料', 'CLC', 0.445, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3263120', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.2, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3264234', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.1, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3268116', 'FUSE', 'PC', '直接物料', 'CLC', 0.015, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3269712/HE', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.109, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3270282', 'GASKET-EDGE-BND', 'PC', '直接物料', 'CLC', 0.002, 'KG', '3200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3270283', 'GASKET-EDGE-BND', 'PC', '直接物料', 'CLC', 0.003, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3270325', 'MOUNT-FIR TREE', 'PC', '直接物料', 'CLC', 0.012, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3270728', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.119, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3274608', 'SWITCH AS-PRESS', 'PC', '直接物料', 'CLC', 0.109, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3275216', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.031, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3280181/HE', 'STRAP AS-GROUND', 'PC', '直接物料', 'CLC', 0.22, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3283655', 'ELEMENT AS-XMSN', 'PC', '直接物料', 'CLC', 1.1, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3291681', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.042, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3291798', 'GUIDE', 'PC', '直接物料', 'CLC', 0.065, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3293356', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.016, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3293710', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.175, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3295455', 'PLUG AS-LD STOR', 'PC', '直接物料', 'CLC', 0.165, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3295528', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.33, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3295538', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.23, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3295706', 'FILM-WARN STEER', 'PC', '直接物料', 'CLC', 0.003, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3295707', 'FILM-GREASE', 'PC', '直接物料', 'CLC', 2.69, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3298934', 'TAPE 38', 'PC', '直接物料', 'CLC', 0.003, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3302448/HE', 'ELBOW AS', 'PC', '直接物料', 'CLC', 0.774, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3306723', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 32, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3309723', 'PLUG AS-HD STOR', 'PC', '直接物料', 'CLC', 0.014, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3309754', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.375, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3309767', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.225, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3309906', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.085, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3309909', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.093, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3311102', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.173, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3316214', 'PLATE', 'PC', '直接物料', 'CLC', 0.12, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3321550', 'PLATE', 'PC', '直接物料', 'CLC', 0.14, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3324695', 'NUT-CLIP', 'PC', '直接物料', 'CLC', 9, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3326683', 'HOSE-ELBOW', 'PC', '直接物料', 'CLC', 0.258, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3328543', 'TEE AS.', 'PC', '直接物料', 'CLC', 0.218, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3328556', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.066, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3328562', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.181, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3328591', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.147, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3328888', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.087, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3334609/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.027, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3343936', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.302, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3345409', 'LAMP GP-SIGNAL', 'PC', '直接物料', 'CLC', 0.038, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3346352', 'PLATE', 'PC', '直接物料', 'CLC', 0.145, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3346872', 'HARNESS AS', 'PC', '直接物料', 'CLC', 79, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3350806', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.815, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3351035', 'FILM-XMSN O FL', 'PC', '直接物料', 'CLC', 1, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3351184', 'ELBOW-AIR', 'PC', '直接物料', 'CLC', 0.504, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3353976', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.163, 'KG', '44', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3353982', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.093, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3355365', 'HOUSING AS', 'PC', '直接物料', 'CLC', 0.03, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3356983', 'CLAMP-SPR BAND-', 'PC', '直接物料', 'CLC', 0.005, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3359214', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 41, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3364754', 'SUPPORT AS-LH', 'PC', '直接物料', 'CLC', 0.396, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3364756', 'SUPPORT AS-RH', 'PC', '直接物料', 'CLC', 0.392, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3368237', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.245, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3368613', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.048, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3368614', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.048, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3377304', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.439, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3377325', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.379, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3378772', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.679, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3378784', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.118, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3378789', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 47, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3379078', 'SWITCH AS-MAG', 'PC', '直接物料', 'CLC', 0.86, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3391911', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.35, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3398002/X', 'PLATE', 'PC', '直接物料', 'CLC', 0.271, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3398538', 'STRIP', 'PC', '直接物料', 'CLC', 0.27, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3398810', 'INSERT, HOOD GP', 'PC', '直接物料', 'CLC', 5.5, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3398937', 'CLIP', 'PC', '直接物料', 'CLC', 0.043, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3402580', 'HINGE AS', 'PC', '直接物料', 'CLC', 0.02, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3403687', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 42.3, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3403688', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 79.1, 'G', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3404515', 'NUT-FULL', 'PC', '直接物料', 'CLC', 32, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3407160', 'CONVERTER-POWER', 'PC', '直接物料', 'CLC', 0.551, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3407161', 'CONVERTER-POWER', 'PC', '直接物料', 'CLC', 0.561, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3410078', 'CONNECTOR AS.', 'PC', '直接物料', 'CLC', 52, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3410104', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.187, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3410120', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.66, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3422135', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 18, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3429511', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 82, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3429671', 'RECEPTACLE AS', 'PC', '直接物料', 'CLC', 0.975, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3429922', 'BOLT-FLANGE HEAD', 'PC', '直接物料', 'CLC', 0.018, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3430596', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.3, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3440050', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.171, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3441950', 'CLIP-HALF SLOT', 'PC', '直接物料', 'CLC', 0.03, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3441951', 'CLIP-HALF TAB', 'PC', '直接物料', 'CLC', 0.025, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3445538', 'PLATE', 'PC', '直接物料', 'CLC', 0.483, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3445539', 'PLATE', 'PC', '直接物料', 'CLC', 0.341, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3445673', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.003, 'KG', '2500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3445674', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.006, 'KG', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3445675', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.01, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3447389', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.05, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3447391', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.057, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3450351', 'FILM', 'PC', '直接物料', 'CLC', 0.011, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3450635', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.113, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3450637', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.217, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3453753', 'MOUNT-DUAL TIE', 'PC', '直接物料', 'CLC', 0.014, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3460334', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.287, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3460335', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.322, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3462999/DX', 'BOLT-STACK', 'PC', '直接物料', 'CLC', 0.09, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3464788', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 67, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3464791', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 60, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3464792', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 72, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3465282', 'FILM', 'PC', '直接物料', 'CLC', 50, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3469043', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 48, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3474163', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.039, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3474165', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 45, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3474405', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.113, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3474437', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.135, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3474438', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.125, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3474734', 'CLIP', 'PC', '直接物料', 'CLC', 0.017, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3475687', 'PLATE-SWING', 'PC', '直接物料', 'CLC', 3, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3485436', 'HOSE', 'PC', '直接物料', 'CLC', 0.35, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3497059', 'CAP AS-FUEL', 'PC', '直接物料', 'CLC', 0.47, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3498519', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.198, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3498603', 'FILM-FUEL (ULTRA LOW SULFUR)(INFO)', 'PC', '直接物料', 'CLC', 0.002, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3498604', 'FILM-FUEL (ULSD)', 'PC', '直接物料', 'CLC', 0.002, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3498793', 'BRACKET', 'PC', '直接物料', 'CLC', 0.538, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3498798', 'BRACKET', 'PC', '直接物料', 'CLC', 0.399, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3498844', 'VALVE GP-CHECK (E)', 'PC', '直接物料', 'CLC', 0.792, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3504369', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.052, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3508742/DX', 'BELT', 'PC', '直接物料', 'CLC', 0.227, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3510261', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.22, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3510268', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.29, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3510271', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.018, 'KG', '238', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3510273', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.027, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3510274', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.03, 'KG', '210', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3510275', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 26, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3510277', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 29, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3510289', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.16, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3514318', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.034, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3514320', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.038, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3514321', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.044, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3518081', 'COVER', 'PC', '直接物料', 'CLC', 0.417, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3518096', 'Plate', 'PC', '直接物料', 'CLC', 0.366, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3521002', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 1.764, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3523964', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.029, 'KG', '180', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3523965', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.043, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3523966', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.043, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3523968', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.043, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3523969', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.06, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3523970', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.045, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3526490', 'PLUG AS-ORFS', 'PC', '直接物料', 'CLC', 0.022, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3526493', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.1, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3526498', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.128, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3532471', 'clip', 'PC', '直接物料', 'CLC', 17, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3534515', 'SWITCH AS-TOGGLE', 'PC', '直接物料', 'CLC', 0.074, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3535101', 'NUT-BULKHEAD', 'PC', '直接物料', 'CLC', 11, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3535127', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.054, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3535132', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.904, 'KG', '11', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3535150', 'ADAPTER AS.-STRAIGHT', 'PC', '直接物料', 'CLC', 0.264, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3537106', 'FILM', 'PC', '直接物料', 'CLC', 1.9, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3537952', 'GROMMET', 'PC', '直接物料', 'CLC', 21, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3537953', 'GROMMET', 'PC', '直接物料', 'CLC', 0.017, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3537954', 'GROMMET', 'PC', '直接物料', 'CLC', 0.018, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3537955', 'GROMMET', 'PC', '直接物料', 'CLC', 0.007, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3537956', 'GROMMET', 'PC', '直接物料', 'CLC', 0.009, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3537957', 'GROMMET', 'PC', '直接物料', 'CLC', 0.011, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3540817', 'COUPLER-QDISC', 'PC', '直接物料', 'CLC', 0.05, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3544257', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.024, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3548415', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.414, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3548706', 'PLATE-IDENT', 'PC', '直接物料', 'CLC', 0.805, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3550632/HE', 'COUPLER-QDISC', 'PC', '直接物料', 'CLC', 0.011, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3553148', 'SWITCH AS-PRESS', 'PC', '直接物料', 'CLC', 0.058, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3557217', 'STUD-STRAIGHT', 'PC', '直接物料', 'CLC', 0.048, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3563986/DX', 'CONNECTOR AS', 'PC', '直接物料', 'CLC', 0.026, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3565117', 'APTER AS-TEE', 'PC', '直接物料', 'CLC', 0.393, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3566693', 'PLATE', 'PC', '直接物料', 'CLC', 0.164, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3568350', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 27, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3568486', 'ELBOW', 'PC', '直接物料', 'CLC', 3.87, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3569931', 'SHAFT', 'PC', '直接物料', 'CLC', 0.023, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3574564', 'ADAPTER AS-CROSS', 'PC', '直接物料', 'CLC', 0.1, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3574574', 'ADAPTOR AS - STR', 'PC', '直接物料', 'CLC', 0.22, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3574589', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.117, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3574621', 'ADAPTER AS - STR (STOR TO HOSE BEAD)', 'PC', '直接物料', 'CLC', 0.117, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3582174', 'ROD AS', 'PC', '直接物料', 'CLC', 0.402, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3582372', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.71, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3582416', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.173, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3595885/DX', 'CLAMP AS.', 'PC', '直接物料', 'CLC', 0.242, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3597323', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.01, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3600377', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.084, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3600415', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.227, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3601767', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3602059', 'BRACKET', 'PC', '直接物料', 'CLC', 0.1, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3602082', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.473, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3602085', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.422, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3602086', 'PLATE AS.', 'PC', '直接物料', 'CLC', 0.279, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3602087', 'COVER', 'PC', '直接物料', 'CLC', 0.499, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3603658', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.12, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3603736', 'ADAPTER AS-FLTR', 'PC', '直接物料', 'CLC', 18, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3611210', 'PLATE-IDENT', 'PC', '直接物料', 'CLC', 0.006, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3613890', 'LATCH AS.', 'PC', '直接物料', 'CLC', 0.102, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3622789', 'ROD', 'PC', '直接物料', 'CLC', 0.218, 'KG', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3625245', 'FLANGE', 'PC', '直接物料', 'CLC', 2.6, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3629434/DX', 'CONNECTION', 'PC', '直接物料', 'CLC', 0.07, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3629689', 'SCREW-BLEED', 'PC', '直接物料', 'CLC', 10, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3634122', 'GASKET', 'PC', '直接物料', 'CLC', 0.001, 'KG', '81', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3634123', 'GASKET', 'PC', '直接物料', 'CLC', 1, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3634357', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.139, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3638055', 'FILM-BELT', 'PC', '直接物料', 'CLC', 0.001, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3641334', 'BLOCK', 'PC', '直接物料', 'CLC', 0.267, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3641357', 'PLUG', 'PC', '直接物料', 'CLC', 0.001, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3641614', 'BOLT-FLANGE HEAD', 'PC', '直接物料', 'CLC', 43.5, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3643074', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.281, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3647222', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.801, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3647227', 'PLATE', 'PC', '直接物料', 'CLC', 0.35, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3647228', 'PLATE', 'PC', '直接物料', 'CLC', 0.44, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3647931', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.304, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649568', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.112, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649569', 'BRACKET', 'PC', '直接物料', 'CLC', 0.085, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649778', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.477, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649794', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.044, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649846', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.117, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649849', 'HOSE', 'PC', '直接物料', 'CLC', 0.248, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649897', 'LEEVE', 'PC', '直接物料', 'CLC', 0.016, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649898', 'SLEEVE', 'PC', '直接物料', 'CLC', 0.043, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3649955', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.28, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650036', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.097, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650090', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.164, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650091', 'HOSE-MOLDED', 'PC', '直接物料', 'CLC', 0.266, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650159', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.149, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650162', 'COUPLER-QDISC', 'PC', '直接物料', 'CLC', 0.011, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650264', 'TUBE', 'PC', '直接物料', 'CLC', 80, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650277', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.14, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650311', 'BRACKET', 'PC', '直接物料', 'CLC', 0.623, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650374', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.124, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650377', 'DUCT', 'PC', '直接物料', 'CLC', 0.218, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3650383', 'FILLER AS-OIL', 'PC', '直接物料', 'CLC', 0.589, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3652565', 'WASHER', 'PC', '直接物料', 'CLC', 0.173, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3652568', 'WASHER,CYL GP-MOUNTING', 'PC', '直接物料', 'CLC', 0.25, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3657521', 'GROMMET, LINES GP-FUEL', 'PC', '直接物料', 'CLC', 0.128, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3657861', 'BOLT-HEX SKT HD', 'PC', '直接物料', 'CLC', 53, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3658430', 'BRACKET', 'PC', '直接物料', 'CLC', 0.77, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3662401', 'GROMMET', 'PC', '直接物料', 'CLC', 21, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3664698', 'PLUG AS-HD STOR', 'PC', '直接物料', 'CLC', 0.018, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3664699', 'PLUG AS-HD STOR', 'PC', '直接物料', 'CLC', 0.032, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3664700', 'PLUG AS-HD STOR', 'PC', '直接物料', 'CLC', 0.063, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3670319', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.139, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3670844', 'FILM-FUEL', 'PC', '直接物料', 'CLC', 0.002, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3672071/DX', 'CLAMP', 'PC', '直接物料', 'CLC', 3.247, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3672555', 'ANGLE AS', 'PC', '直接物料', 'CLC', 0.358, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3672564', 'BAFFLE', 'PC', '直接物料', 'CLC', 0.338, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3675209', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3675210', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3675212', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3675537', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.102, 'KG', '26', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3675978', 'PLUG AS', 'PC', '直接物料', 'CLC', 0.09, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3676022', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.032, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3679097', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.056, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3679098', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.056, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3682271', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.114, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3684541', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 28, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3684543', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 28, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3694102', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.028, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3696857', 'PLUG AS-HD STOR', 'PC', '直接物料', 'CLC', 0.168, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3696858', 'PLUG AS-HD STOR', 'PC', '直接物料', 'CLC', 0.275, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3696990', 'PLATE', 'PC', '直接物料', 'CLC', 0.204, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3697202/X', 'BRACKET', 'PC', '直接物料', 'CLC', 0.038, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3699372', 'BLOCK', 'PC', '直接物料', 'CLC', 0.156, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3703208', 'SHIM-PACK', 'PC', '直接物料', 'CLC', 0.138, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3703209', 'SHIM-PACK', 'PC', '直接物料', 'CLC', 0.662, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3703213', 'PLATE', 'PC', '直接物料', 'CLC', 1.129, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3703217', 'SPACER', 'PC', '直接物料', 'CLC', 0.69, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3703226', 'SPACER', 'PC', '直接物料', 'CLC', 0.683, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3704104', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.107, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3708081', 'CLAMP AS', 'PC', '直接物料', 'CLC', 0.275, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3708137', 'SHEET', 'PC', '直接物料', 'CLC', 0.433, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3722017', 'SLEEVE-MOUNT', 'PC', '直接物料', 'CLC', 0.262, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3722526', 'BLOCK', 'PC', '直接物料', 'CLC', 0.799, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3723632', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.143, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3725159', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.309, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3728579', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.311, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3729240', 'BLOCK', 'PC', '直接物料', 'CLC', 0.109, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3729270', 'PLATE', 'PC', '直接物料', 'CLC', 0.25, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3731349', 'BRACKET', 'PC', '直接物料', 'CLC', 0.156, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3734328', 'SENSOR GP-POSN', 'PC', '直接物料', 'CLC', 0.08, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3736946', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.755, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3736948', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.434, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3737052', 'VALVE-FAST FILL', 'PC', '直接物料', 'CLC', 0.03, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3738970/HE', 'HARNESS AS-CAB', 'PC', '直接物料', 'CLC', 0.69, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3747125', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.149, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3747464', 'CAP-SEAL', 'PC', '直接物料', 'CLC', 0.003, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3749680', 'HOSE', 'PC', '直接物料', 'CLC', 0.341, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3751658', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.098, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3752469', 'HARNESS AS, LIGHTING GP (02)', 'PC', '直接物料', 'CLC', 0.052, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3752751', 'FILM-CAT DEO-ULS', 'PC', '直接物料', 'CLC', 0.003, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3762198', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.214, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3768804', 'CLAMP', 'PC', '直接物料', 'CLC', 1.176, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3768987', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.259, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3768991', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.31, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3771465', 'PLATE', 'PC', '直接物料', 'CLC', 0.259, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3776220', 'BRACKET', 'PC', '直接物料', 'CLC', 0.88, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3779543', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.355, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3779555', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.114, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3779557', 'ADAPTER AS - STR (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.126, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3779563', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.056, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3779564', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 56, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3779577', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.041, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3779581', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 42, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3779586', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.164, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3789500', 'ROD AS', 'PC', '直接物料', 'CLC', 0.241, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3793416', 'LAMP GP-SIGNAL', 'PC', '直接物料', 'CLC', 0.222, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3793905', 'OVER', 'PC', '直接物料', 'CLC', 43, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3805123', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.274, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3805124', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.199, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3805240', 'BRACKET', 'PC', '直接物料', 'CLC', 32, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3805918', 'PIN AS', 'PC', '直接物料', 'CLC', 0.86, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3805919', 'PIN AS, MTG GP-CAB', 'PC', '直接物料', 'CLC', 0.68, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3806215', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.238, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3808401', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.065, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3809108', 'CLAMP-TUBING', 'PC', '直接物料', 'CLC', 0.152, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3812329', 'RELAY AS-TIMER', 'PC', '直接物料', 'CLC', 0.01, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3812621', 'MOUNT-AXIAL TIE', 'PC', '直接物料', 'CLC', 0.001, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3816366', 'PLATE', 'PC', '直接物料', 'CLC', 1.232, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3816367', 'PLATE', 'PC', '直接物料', 'CLC', 1.33, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3816686', 'PLATE', 'PC', '直接物料', 'CLC', 0.697, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3822001', 'SENSOR GP-LEVEL', 'PC', '直接物料', 'CLC', 0.06, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3822790', 'VALVE GP-SHUTOFF', 'PC', '直接物料', 'CLC', 3.497, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3824478', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 0.027, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3831306', 'COVER', 'PC', '直接物料', 'CLC', 1.655, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3831308', 'BRACKET AS', 'PC', '直接物料', 'CLC', 1.333, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3834322', 'BRACKET', 'PC', '直接物料', 'CLC', 0.57, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3834332', 'BRACKET', 'PC', '直接物料', 'CLC', 0.502, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3834347', 'BRACKET', 'PC', '直接物料', 'CLC', 0.57, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3838982', 'COVER', 'PC', '直接物料', 'CLC', 0.43, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3841628', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 27, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3843843', 'BLOCK', 'PC', '直接物料', 'CLC', 0.125, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3844456', 'PIN', 'PC', '直接物料', 'CLC', 4.853, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3845623', 'FILM-BELT', 'PC', '直接物料', 'CLC', 0.002, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3847727', 'SPACER', 'PC', '直接物料', 'CLC', 72.576, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3849450', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.379, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3849470', 'BRACKET', 'PC', '直接物料', 'CLC', 0.174, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3849474', 'PLATE', 'PC', '直接物料', 'CLC', 1.095, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3849501', 'HOSE', 'PC', '直接物料', 'CLC', 0.257, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3849515', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.962, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3849542', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.11, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3853821', 'GROMMET', 'PC', '直接物料', 'CLC', 0.033, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3854546', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.542, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3855772', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 60, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3863870', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.388, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3863875', 'HARNESS AS.', 'PC', '直接物料', 'CLC', 0.238, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3863903', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.103, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3863905', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.284, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3863908', 'BRACKET', 'PC', '直接物料', 'CLC', 0.087, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3866212', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.044, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3866235', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 57, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3874613', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.732, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3874638', 'PLATE', 'PC', '直接物料', 'CLC', 0.91, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3874639', 'PLATE', 'PC', '直接物料', 'CLC', 0.7, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3875472', 'LANYARD-CAP', 'PC', '直接物料', 'CLC', 4, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3875539', 'PLATE', 'PC', '直接物料', 'CLC', 0.332, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3884327', 'COVER -DUST', 'PC', '直接物料', 'CLC', 0.082, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3886664', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.395, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3887009', 'CLAMP-BENT BOLT', 'PC', '直接物料', 'CLC', 0.251, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3887010', 'CLAMP-BENT BOLT', 'PC', '直接物料', 'CLC', 0.325, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3887012', 'CLAMP-BENT BOLT', 'PC', '直接物料', 'CLC', 0.348, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3887014', 'CLAMP-BENT BOLT', 'PC', '直接物料', 'CLC', 0.38, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3887016', 'CLAMP-BENT BOLT', 'PC', '直接物料', 'CLC', 0.383, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3888868', 'BLOCK', 'PC', '直接物料', 'CLC', 0.112, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3891079', 'ELEMENT AS OIL', 'PC', '直接物料', 'CLC', 0.26, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3892935', 'STRIP', 'PC', '直接物料', 'CLC', 0.505, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3893007', 'BRACKET', 'PC', '直接物料', 'CLC', 0.919, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3893197', 'PLATE', 'PC', '直接物料', 'CLC', 0.142, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3893708', 'PLUG AS-HD STOR', 'PC', '直接物料', 'CLC', 0.02, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3893719', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.058, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3893722', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 71, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3893725', 'ADAPTER AS ELBOW', 'PC', '直接物料', 'CLC', 0.37, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3893728', 'PLUG AS-HD STOR', 'PC', '直接物料', 'CLC', 0.145, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3893732', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.254, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894123', 'BRACKET', 'PC', '直接物料', 'CLC', 0.34, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894130', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.105, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894144', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.489, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894158', 'COVER', 'PC', '直接物料', 'CLC', 0.53, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894175', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.369, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894203', 'VALVE-BALL', 'PC', '直接物料', 'CLC', 0.344, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894217', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.336, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894232', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.569, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894235', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.176, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3894399', 'BRACKET', 'PC', '直接物料', 'CLC', 0.457, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3895784/DX', 'BRACKET-FILTER', 'PC', '直接物料', 'CLC', 0.801, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3899072', 'CLAMP-T\'BOLT', 'PC', '直接物料', 'CLC', 0.145, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3899441', 'INSULATION-ELBOW', 'PC', '直接物料', 'CLC', 0.001, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3899730', 'RETAINER PLATE', 'PC', '直接物料', 'CLC', 0.452, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3907384', 'BRACKET', 'PC', '直接物料', 'CLC', 1.081, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3908571', 'STRIP', 'PC', '直接物料', 'CLC', 0.055, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3910162', 'DOWEL', 'PC', '直接物料', 'CLC', 44, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3910217', 'PIN AS, CYL GP-MOUNTING&', 'PC', '直接物料', 'CLC', 0.73, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3911756', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3914893', 'COUPLING-BARB', 'PC', '直接物料', 'CLC', 5, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3916961', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.374, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3917000', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.499, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3917125', 'SWITCH GP', 'PC', '直接物料', 'CLC', 0.039, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3917230', 'BRACKET', 'PC', '直接物料', 'CLC', 0.485, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3920736', 'BRACKET', 'PC', '直接物料', 'CLC', 0.397, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3920792', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.13, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3920795', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 61, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3920800', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.16, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3920807', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.05, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3924634', 'LAMP GP-SIGNAL', 'PC', '直接物料', 'CLC', 0.4, 'KG', '7', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3929208', 'PLUNGER-RELIEF V', 'PC', '直接物料', 'CLC', 13, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3929315/X', 'SPACER', 'PC', '直接物料', 'CLC', 0.066, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3932516', 'FILM-RELAY PANEL', 'PC', '直接物料', 'CLC', 5, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3935305', 'GASKET', 'PC', '直接物料', 'CLC', 5, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3952113', 'LAMP GP-SIGNAL', 'PC', '直接物料', 'CLC', 0.222, 'KG', '7', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3952308', 'BRACKET-LH', 'PC', '直接物料', 'CLC', 0.904, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3952309', 'BRACKET-RH', 'PC', '直接物料', 'CLC', 0.904, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3958824', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.309, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3960378', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.09, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3964307', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.241, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3966178', 'BAFFLE', 'PC', '直接物料', 'CLC', 0.06, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3979301', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.026, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3980940', 'SWITCH AS-MAG', 'PC', '直接物料', 'CLC', 0.353, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3983011', 'CAP-TANK', 'PC', '直接物料', 'CLC', 0.11, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3985645', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.28, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3992747', 'TUBE', 'PC', '直接物料', 'CLC', 0.463, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3A3692', 'CLIP', 'PC', '直接物料', 'CLC', 0.043, 'KG', '88', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B2062', 'PIN', 'PC', '直接物料', 'CLC', 14, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4605', 'COTTER', 'PC', '直接物料', 'CLC', 0.454, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4611', 'COTTER', 'PC', '直接物料', 'CLC', 0.8, 'G', '800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4615', 'PIN-COTTER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4617', 'COTTER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4618', 'COTTER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4619', 'COTTER', 'PC', '直接物料', 'CLC', 0.003, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4623', 'COTTER', 'PC', '直接物料', 'CLC', 3, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4628', 'COTTER', 'PC', '直接物料', 'CLC', 5.7, 'G', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4629', 'PIN-COTTER', 'PC', '直接物料', 'CLC', 0.006, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4630', 'COTTER', 'PC', '直接物料', 'CLC', 0.009, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4632', 'COTTER', 'PC', '直接物料', 'CLC', 9, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4640', 'COTTER', 'PC', '直接物料', 'CLC', 0.014, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B4647', 'PIN-COTTER', 'PC', '直接物料', 'CLC', 0.042, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B5317', 'COTTER PIN', 'PC', '直接物料', 'CLC', 45, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B5320', 'COTTER', 'PC', '直接物料', 'CLC', 45, 'G', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B5325', 'COTTER', 'PC', '直接物料', 'CLC', 98, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B6493', 'ELBOW', 'PC', '直接物料', 'CLC', 91, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B6552', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.027, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B6769', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 31.6, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B7721', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.02, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B7733', 'NIPPLE-PIPE', 'PC', '直接物料', 'CLC', 10.75, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B7740', 'NIPPLE-PIPE', 'PC', '直接物料', 'CLC', 97, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B7754', 'BUSHING', 'PC', '直接物料', 'CLC', 0.032, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B8485', 'ADPTR-ELB 45 DEG', 'PC', '直接物料', 'CLC', 0.013, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B8486', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.018, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B8488', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.016, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B8489', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.006, 'KG', '625', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B8491', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.04, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3B8822', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.038, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3D0053', 'BEARING-BALL', 'PC', '直接物料', 'CLC', 0.333, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3D2824', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3D2981', 'GASKET', 'PC', '直接物料', 'CLC', 0.002, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3D6509', 'DOWEL', 'PC', '直接物料', 'CLC', 0.004, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3D7587', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.051, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3D8884', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.096, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3D8913', 'ADAPTER-ELBOW 90 DEG', 'PC', '直接物料', 'CLC', 0.125, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E2026', 'SWITCH ASSY PRESS', 'PC', '直接物料', 'CLC', 63, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E2322', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.176, 'KG', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E3636', 'SWITCH AS-BALL', 'PC', '直接物料', 'CLC', 0.112, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E4048', 'CAP-PLUG', 'PC', '直接物料', 'CLC', 0.019, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E4096', 'CAP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E4321', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.042, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E4352', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.005, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E4353', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.009, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E4887', 'SLEEVE-30MM BOLT', 'PC', '直接物料', 'CLC', 0.741, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E4888', 'WASHER', 'PC', '直接物料', 'CLC', 1.458, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E5001', 'PIN-SPRING', 'PC', '直接物料', 'CLC', 0.022, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E5169', 'GUARD-TOGGLE', 'PC', '直接物料', 'CLC', 0.016, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E5239', 'RELAY AS', 'PC', '直接物料', 'CLC', 0.031, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E6328', 'ALARM GP-BASIC', 'PC', '直接物料', 'CLC', 0.116, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E6329', 'ALARM GP-BASIC', 'PC', '直接物料', 'CLC', 0.116, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E6753', 'GROMMET', 'PC', '直接物料', 'CLC', 10, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E6754', 'GROMMET', 'PC', '直接物料', 'CLC', 0.015, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E6757', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.041, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E6773', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.006, 'KG', '255', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E6909', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.023, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E8004', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 50, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E8020', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E9411', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.042, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E9860', 'LOCKNUT', 'PC', '直接物料', 'CLC', 5, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E9863', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.115, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3E9865', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.005, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3F5535', 'SCREW-DRIVE', 'PC', '直接物料', 'CLC', 0.003, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3F6166', 'EXTENSION', 'PC', '直接物料', 'CLC', 20, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3F9556', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '3000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3F9559', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '23', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3G0472', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.109, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3G1701', 'SPRING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3G2580', 'BEARING', 'PC', '直接物料', 'CLC', 0.2, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3G2581', 'BEARING', 'PC', '直接物料', 'CLC', 57, 'G', '62', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3G6659', 'HOSE AS', 'PC', '直接物料', 'CLC', 82, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3G8047', 'GROMMET', 'PC', '直接物料', 'CLC', 0.184, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3G8054', 'CLIP', 'PC', '直接物料', 'CLC', 0.23, 'KG', '56', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3G8057', 'CLIP', 'PC', '直接物料', 'CLC', 0.28, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3H4192', 'RING RETAINING', 'PC', '直接物料', 'CLC', 0.018, 'KG', '11', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3H8538', 'PIN', 'PC', '直接物料', 'CLC', 21.66, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J1877', 'SPACER', 'PC', '直接物料', 'CLC', 41, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J1907', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.002, 'KG', '2700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J2333', 'EARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.51, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J2903', 'FLANGE-COVER', 'PC', '直接物料', 'CLC', 0.455, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J5389', 'PLUG-NPTF', 'PC', '直接物料', 'CLC', 0.053, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J5390', 'PLUG-NPTF', 'PC', '直接物料', 'CLC', 0.028, 'KG', '375', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J5696', 'PIPE', 'PC', '直接物料', 'CLC', 0.035, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J7354', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3J8500', 'RING-RETAINING', 'PC', '直接物料', 'CLC', 0.009, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3K0196', 'GUARD-DIRT', 'PC', '直接物料', 'CLC', 0.164, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3K0360', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '3000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3K6060', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.008, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3K6454', 'SEAL', 'PC', '直接物料', 'CLC', 0.131, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3K8280', 'PIN', 'PC', '直接物料', 'CLC', 20, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3K8510', 'PIN', 'PC', '直接物料', 'CLC', 4.403, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3K9520', 'GROMMET', 'PC', '直接物料', 'CLC', 9, 'G', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3N2945', 'GASKET', 'PC', '直接物料', 'CLC', 5, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3P1461', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 21, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3P2404', 'CLIP', 'PC', '直接物料', 'CLC', 0.045, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3P5414', 'GROMMET', 'PC', '直接物料', 'CLC', 0.009, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3P5903', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 22.9, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3P5904', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 28, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3P9847', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.183, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3R8530', 'BOSS', 'PC', '直接物料', 'CLC', 0.228, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3R9704', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.411, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3S2093', 'STRAP-CABLE', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3S2713', 'NUT-FULL', 'PC', '直接物料', 'CLC', 6.55, 'G', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3S8664', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.034, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3S8665', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.031, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3T0050', 'CLIP', 'PC', '直接物料', 'CLC', 0.031, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3T0851', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3T0852', 'LOCKNUT', 'PC', '直接物料', 'CLC', 6, 'G', '1600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3T5763', 'BUMPER', 'PC', '直接物料', 'CLC', 38, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3V0613', 'BUMPER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3V2431', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3V3816', 'NOZZLE AS-WASHER', 'PC', '直接物料', 'CLC', 43, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3V9244', 'WASHER', 'PC', '直接物料', 'CLC', 0.062, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3W2647', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.044, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3W7254', 'SPACER', 'PC', '直接物料', 'CLC', 0.537, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3W7256', 'SPACER', 'PC', '直接物料', 'CLC', 0.424, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3W9226', 'PIN', 'PC', '直接物料', 'CLC', 0.086, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3Y2806', 'SPRING', 'PC', '直接物料', 'CLC', 0.011, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('3Y2888', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.02, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4151942', 'SPACER', 'PC', '直接物料', 'CLC', 0.454, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4152416', 'ELBOW - INLET', 'PC', '直接物料', 'CLC', 0.16, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4164678', 'BRACKET', 'PC', '直接物料', 'CLC', 55, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4177885', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.187, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4183762', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.285, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4183768', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.77, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4193911', 'LAMP GP-BASIC', 'PC', '直接物料', 'CLC', 0.029, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4199735', 'RETAINER-SST', 'PC', '直接物料', 'CLC', 0.001, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4200814', 'BLOCK', 'PC', '直接物料', 'CLC', 0.219, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4200815', 'BLOCK', 'PC', '直接物料', 'CLC', 0.159, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4205299', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.055, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4206341/DX', 'CONNECTOR', 'PC', '直接物料', 'CLC', 0.026, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4214024', 'SEAL-U-CUP', 'PC', '直接物料', 'CLC', 13, 'G', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4220888', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.93, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4220963', 'STRAP-BUS BAR', 'PC', '直接物料', 'CLC', 83, 'G', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4222152', 'LOUVER AS', 'PC', '直接物料', 'CLC', 0.1, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4224704', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.103, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4224871', 'FILM-WARN BELT', 'PC', '直接物料', 'CLC', 0.25, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4226597', 'HOSE', 'PC', '直接物料', 'CLC', 0.047, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4226598', 'HOSE', 'PC', '直接物料', 'CLC', 0.13, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4226607', 'HOSE', 'PC', '直接物料', 'CLC', 0.488, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4226612', 'HOSE', 'PC', '直接物料', 'CLC', 0.533, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4229296', 'COUPLER-QDISC', 'PC', '直接物料', 'CLC', 10, 'G', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4231796', 'FILM-BATTERY DISC', 'PC', '直接物料', 'CLC', 0.005, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233454', 'BLOCK', 'PC', '直接物料', 'CLC', 0.18, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233455', 'BLOCK', 'PC', '直接物料', 'CLC', 0.24, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233457', 'BLOCK', 'PC', '直接物料', 'CLC', 0.216, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233458', 'BLOCK', 'PC', '直接物料', 'CLC', 0.189, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233459', 'BLOCK', 'PC', '直接物料', 'CLC', 0.109, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233462', 'BLOCK', 'PC', '直接物料', 'CLC', 0.18, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233463', 'BLOCK', 'PC', '直接物料', 'CLC', 0.379, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233464', 'BLOCK', 'PC', '直接物料', 'CLC', 0.318, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233469', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.368, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4233476', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.383, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4236434', 'SENSOR GP-LEVEL', 'PC', '直接物料', 'CLC', 0.13, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4246619', 'BLOCK AS-JCT', 'PC', '直接物料', 'CLC', 0.365, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4246657', 'LEVER', 'PC', '直接物料', 'CLC', 0.195, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4248847', 'INDICATOR', 'PC', '直接物料', 'CLC', 0.014, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4251817', 'SENSOR AS', 'PC', '直接物料', 'CLC', 30, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4255357', 'PLUG', 'PC', '直接物料', 'CLC', 0.007, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4255509', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.735, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4255601', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.876, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4257349', 'BLOCK', 'PC', '直接物料', 'CLC', 0.125, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4258257', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.23, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4262224', 'PLATE', 'PC', '直接物料', 'CLC', 0.296, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4264053', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 38, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4264060', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.133, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4264153', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.101, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4264334', 'SHIM', 'PC', '直接物料', 'CLC', 0.005, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4264335', 'PIN AS', 'PC', '直接物料', 'CLC', 1.36, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4264446', 'PLATE', 'PC', '直接物料', 'CLC', 0.338, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4270343', 'BRACKET', 'PC', '直接物料', 'CLC', 0.4, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4270346', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.852, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4279716', 'BRACKET', 'PC', '直接物料', 'CLC', 0.21, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4285742', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.367, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4306334', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.244, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4308957', 'FILM-CAT DEO-ULS', 'PC', '直接物料', 'CLC', 3, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4309454', 'SENSOR GP-LEVEL', 'PC', '直接物料', 'CLC', 0.13, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4310709', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.092, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4314255', 'BAFFLE', 'PC', '直接物料', 'CLC', 0.118, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4314263', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.097, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4318735', 'FLASHER AS', 'PC', '直接物料', 'CLC', 0.27, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4328369', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.052, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4329432', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 1.238, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4329549', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 56, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4330628', 'PLATE', 'PC', '直接物料', 'CLC', 0.268, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4336006', 'BRACKET AS', 'PC', '直接物料', 'CLC', 2.671, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4336560', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.382, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4336972', 'VALVE GP-SOL', 'PC', '直接物料', 'CLC', 0.482, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4337105', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 13, 'G', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4337128', 'SPACER', 'PC', '直接物料', 'CLC', 0.13, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4341158', 'PLATE', 'PC', '直接物料', 'CLC', 1.703, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4341370', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.167, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4341375', 'TUBE AS.', 'PC', '直接物料', 'CLC', 0.164, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4352802', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.557, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4356522', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.715, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4358321', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.156, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4362306', 'BAFFLE', 'PC', '直接物料', 'CLC', 0.113, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4362368', 'COLLAR', 'PC', '直接物料', 'CLC', 0.026, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4363333', 'HOSE-ELBOW', 'PC', '直接物料', 'CLC', 0.383, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4363443', 'ELEMENT AS-HYD', 'PC', '直接物料', 'CLC', 0.159, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4363956', 'PLATE', 'PC', '直接物料', 'CLC', 0.219, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4367052', 'BRACKET', 'PC', '直接物料', 'CLC', 0.219, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4367058', 'BRACKET', 'PC', '直接物料', 'CLC', 0.415, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4367061', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.348, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4367062', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.348, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4367134', 'PLATE', 'PC', '直接物料', 'CLC', 0.633, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4367135', 'PLATE', 'PC', '直接物料', 'CLC', 0.401, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4370783', 'PLUG AS', 'PC', '直接物料', 'CLC', 27, 'G', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4377789', 'SHEET', 'PC', '直接物料', 'CLC', 0.076, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4378556', 'PLATE', 'PC', '直接物料', 'CLC', 1.066, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4378984', 'COVER', 'PC', '直接物料', 'CLC', 1.324, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4381541', 'RETAINER', 'PC', '直接物料', 'CLC', 0.161, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4381542', 'SPACER', 'PC', '直接物料', 'CLC', 0.049, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4389244', 'PLATE AS', 'PC', '直接物料', 'CLC', 69, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4389257', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391808', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 49, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391827', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 23, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391829', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.532, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391839', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 71, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391858', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.044, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391891', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.235, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391942', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.99, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391974', 'ADAPTER AS - TEE (STOR TO HOSE BEAD)', 'PC', '直接物料', 'CLC', 0.197, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4391986', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.171, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4392898', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.131, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4400175', 'COMPENSATOR', 'PC', '直接物料', 'CLC', 0.067, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4406977', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.235, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4410116', 'PLATE', 'PC', '直接物料', 'CLC', 1.976, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4410952', 'BRACKET', 'PC', '直接物料', 'CLC', 0.306, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4410974', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.299, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4410975', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.741, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4410976', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.121, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4418164', 'SEAL-BOOT', 'PC', '直接物料', 'CLC', 0.054, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4419431', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.234, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4419432', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.491, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4419450', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.45, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4419462', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.134, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4420289', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.074, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4421579', 'NIPPLE AS-QDISC', 'PC', '直接物料', 'CLC', 0.08, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4422367', 'FILM-BELT ROUTIN', 'PC', '直接物料', 'CLC', 0.006, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4431683', 'FITTING', 'PC', '直接物料', 'CLC', 0.886, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4433947', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 31, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4434558', 'BRACKET', 'PC', '直接物料', 'CLC', 0.458, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4434928', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.606, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4436362', 'CONVERTER-POWER', 'PC', '直接物料', 'CLC', 1.71, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4438192', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.18, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4442665', 'PLATE', 'PC', '直接物料', 'CLC', 0.206, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4446528', 'LAMP AS-IND', 'PC', '直接物料', 'CLC', 0.052, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4446926', 'TUBE AS.', 'PC', '直接物料', 'CLC', 0.31, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4446935', 'TUBE AS.', 'PC', '直接物料', 'CLC', 0.382, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4447221', 'ROD', 'PC', '直接物料', 'CLC', 0.045, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4448663', 'FILM-GREASE LINE', 'PC', '直接物料', 'CLC', 0.013, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4460473', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.2, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4461523', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 1.441, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4461524', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 0.909, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4461526', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 1.3, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4461527', 'STRIP-WEAR', 'PC', '直接物料', 'CLC', 2.305, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4474049', 'CLAMP', 'PC', '直接物料', 'CLC', 0.108, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4474050', 'CLAMP', 'PC', '直接物料', 'CLC', 0.337, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4474905', 'BRACKET', 'PC', '直接物料', 'CLC', 0.134, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4485586', 'PLATE', 'PC', '直接物料', 'CLC', 0.3, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4487021', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.155, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4489017', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 47, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4490097', 'GROMMET-OVAL', 'PC', '直接物料', 'CLC', 0.008, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4491426', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.23, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4494835', 'BLOCK', 'PC', '直接物料', 'CLC', 0.123, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4499226', 'FILM-CAT SATO', 'PC', '直接物料', 'CLC', 0.001, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4501700', 'DAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.15, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4502057', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 58, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4502497', 'FILM-SAFETY', 'PC', '直接物料', 'CLC', 0.032, 'KG', '381', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4502555', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4507010', 'FILM-WARN(FALL)', 'PC', '直接物料', 'CLC', 0.007, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4507011', 'FILM-WARN (FALL)', 'PC', '直接物料', 'CLC', 0.007, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4510377', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 86, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4510399', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.079, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4510450', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 23, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4511556', 'BRACKET', 'PC', '直接物料', 'CLC', 0.66, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4511558', 'BLOCK AS', 'PC', '直接物料', 'CLC', 0.177, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4511799', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.28, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4512617', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 48, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4512625', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.067, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4512766', 'SEAL-FLAT FACE', 'PC', '直接物料', 'CLC', 1, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4514008', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.77, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4516716', 'BLOCK', 'PC', '直接物料', 'CLC', 0.143, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4516717', 'BLOCK', 'PC', '直接物料', 'CLC', 0.165, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4519926', 'MOUNT AS', 'PC', '直接物料', 'CLC', 0.053, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4520435', 'ADAPTER AS', 'PC', '直接物料', 'CLC', 0.317, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4521844', 'BRACKET', 'PC', '直接物料', 'CLC', 0.084, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4527199', 'BRACKET', 'PC', '直接物料', 'CLC', 0.335, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4532608', 'ELBOW AS', 'PC', '直接物料', 'CLC', 1.212, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4534868', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.472, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4539924', 'RELAY AS', 'PC', '直接物料', 'CLC', 0.031, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4540228', 'PIN AS', 'PC', '直接物料', 'CLC', 0.652, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4540230', 'HINGE AS', 'PC', '直接物料', 'CLC', 43, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4542101', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.267, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4542327', 'SEAL-D-RING', 'PC', '直接物料', 'CLC', 25, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4542328', 'SEAL-D-RING', 'PC', '直接物料', 'CLC', 29, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4543651', 'HOSE', 'PC', '直接物料', 'CLC', 0.286, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4545262', 'STRIP', 'PC', '直接物料', 'CLC', 0.068, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4547767', 'BRACKET AS', 'PC', '直接物料', 'CLC', 3.347, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4547802', 'STEP', 'PC', '直接物料', 'CLC', 1.552, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4547807', 'STEP AS', 'PC', '直接物料', 'CLC', 1.175, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4549048', 'FILM-MOE', 'PC', '直接物料', 'CLC', 0.007, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4549703', 'FILM-GREASE', 'PC', '直接物料', 'CLC', 0.03, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4551113', 'RING-SEAL', 'PC', '直接物料', 'CLC', 11, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4551685', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.055, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4555222', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.207, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4555538', 'GAUGE AS', 'PC', '直接物料', 'CLC', 0.43, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4557486', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.716, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4559255', 'SWITCH AS-PRESS', 'PC', '直接物料', 'CLC', 80, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4560644', 'LAMP GP-BASIC', 'PC', '直接物料', 'CLC', 0.024, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4562163', 'PLATE', 'PC', '直接物料', 'CLC', 0.31, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4562583', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.34, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4564389', 'BRACKET', 'PC', '直接物料', 'CLC', 1.173, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4570033', 'SENDER AS-LEVEL', 'PC', '直接物料', 'CLC', 0.3, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4570799', 'LOCK-NUT', 'PC', '直接物料', 'CLC', 0.058, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4573197', 'PLATE', 'PC', '直接物料', 'CLC', 0.15, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4575601', 'BRACKET AS-LH', 'PC', '直接物料', 'CLC', 0.71, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4575602', 'BRACKET AS-RH', 'PC', '直接物料', 'CLC', 0.71, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4575982', 'CLAMP', 'PC', '直接物料', 'CLC', 0.42, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4575983', 'CLAMP AS', 'PC', '直接物料', 'CLC', 0.451, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4576740', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.23, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4577687', 'FILM-DIESEL FUEL', 'PC', '直接物料', 'CLC', 0.001, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4590185', 'ELBOW-OUTLET', 'PC', '直接物料', 'CLC', 0.502, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4590225', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.31, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4590576', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.238, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4590577', 'VALVE AS-BALL', 'PC', '直接物料', 'CLC', 0.125, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4590593', 'ADAPTER AS - LATERAL TEE (ORFS TO STOR)', 'PC', '直接物料', 'CLC', 0.292, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4590632', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.056, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4590656', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.09, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4592594', 'SWITCH AS-PRESS', 'PC', '直接物料', 'CLC', 0.133, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4603764', 'GASKET', 'PC', '直接物料', 'CLC', 0.014, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4609977', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.383, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4613568/CS', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.313, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4615096', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.082, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4618042', 'GROMMET-SPLIT', 'PC', '直接物料', 'CLC', 0.018, 'KG', '26', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4626972', 'PLATE', 'PC', '直接物料', 'CLC', 0.381, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4626979', 'PLATE', 'PC', '直接物料', 'CLC', 0.572, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4630968', 'FILM', 'PC', '直接物料', 'CLC', 0.013, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4631828', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.18, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4636899', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.283, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4638124', 'PLATE', 'PC', '直接物料', 'CLC', 0.609, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4640432', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.453, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4640433', 'CONNECTOR AS    ', 'PC', '直接物料', 'CLC', 0.004, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4640512', 'HOSE', 'PC', '直接物料', 'CLC', 0.13, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4640513', 'BRACKET', 'PC', '直接物料', 'CLC', 0.566, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4642706', 'HOSE', 'PC', '直接物料', 'CLC', 0.077, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4642945', 'BRACKET', 'PC', '直接物料', 'CLC', 0.409, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4644917', 'MONITOR GP-EXH', 'PC', '直接物料', 'CLC', 0.44, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4646817', 'BRACKET AS', 'PC', '直接物料', 'CLC', 1.553, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4647735', 'SPACER', 'PC', '直接物料', 'CLC', 0.052, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4651655', 'BRACKET', 'PC', '直接物料', 'CLC', 0.46, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4656574', 'BRACKET', 'PC', '直接物料', 'CLC', 0.413, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4656581', 'BRACKET', 'PC', '直接物料', 'CLC', 0.589, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4656593', 'LATCH AS', 'PC', '直接物料', 'CLC', 0.109, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4661604', 'SPACER', 'PC', '直接物料', 'CLC', 0.332, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4662119', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.778, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4662364', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 28, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4663277', 'VALVE GP-CHECK-E', 'PC', '直接物料', 'CLC', 0.08, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4664376', 'PANEL', 'PC', '直接物料', 'CLC', 0.49, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4664377', 'PANEL', 'PC', '直接物料', 'CLC', 0.48, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4665073', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.647, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4665074', 'BRACKET', 'PC', '直接物料', 'CLC', 0.321, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4665075', 'PLATE', 'PC', '直接物料', 'CLC', 0.123, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4665077', 'GROMMET', 'PC', '直接物料', 'CLC', 0.043, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4669209', 'CLIP', 'PC', '直接物料', 'CLC', 0.18, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4675167', 'SPACER', 'PC', '直接物料', 'CLC', 0.057, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4675344', 'MOUNT-ISOLATION', 'PC', '直接物料', 'CLC', 0.004, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4678535', 'SWITCH AS-START', 'PC', '直接物料', 'CLC', 0.206, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4679193', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.172, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4681907', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.047, 'KG', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4685287', 'BRACKET', 'PC', '直接物料', 'CLC', 0.492, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4685522', 'BRACKET AS.', 'PC', '直接物料', 'CLC', 0.909, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4685523', 'BRACKET', 'PC', '直接物料', 'CLC', 0.383, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4688049', 'FILM-CAT DEO', 'PC', '直接物料', 'CLC', 0.003, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4691628', 'PLATE AS', 'PC', '直接物料', 'CLC', 1.325, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4691632', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.427, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4691634', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.634, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4693265', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.558, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4701038', 'GROMMET', 'PC', '直接物料', 'CLC', 0.042, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4707366', 'PIN-G.E.T', 'PC', '直接物料', 'CLC', 0.209, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4713492', 'BRACKET', 'PC', '直接物料', 'CLC', 0.067, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4718197', 'RECEIVER', 'PC', '直接物料', 'CLC', 0.41, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4718498', 'FILM-FILTER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4718499', 'FILM-FILTER', 'PC', '直接物料', 'CLC', 0.003, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4718500', 'FILM-FILTER', 'PC', '直接物料', 'CLC', 3, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4720205', 'WIRE AS-JUMPER,', 'PC', '直接物料', 'CLC', 0.022, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4720507', 'LAMP GP-BASIC', 'PC', '直接物料', 'CLC', 0.057, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4728713', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.517, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4728714', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.858, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4737998', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 2, 'G', '77', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4739306', 'PLATE', 'PC', '直接物料', 'CLC', 0.297, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4742617', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.103, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4742633', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.23, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4746341', 'BRACKET', 'PC', '直接物料', 'CLC', 0.796, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4754942', 'CAP AS', 'PC', '直接物料', 'CLC', 0.173, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4770555', 'PLATE', 'PC', '直接物料', 'CLC', 0.294, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4776041', 'STRIP', 'PC', '直接物料', 'CLC', 0.023, 'KG', '96', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4779886', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.139, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4786604', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.161, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4787893', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4791993', 'BRACKET', 'PC', '直接物料', 'CLC', 1.45, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4792171', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.028, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4792172', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.034, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4792231', 'STRIP AS', 'PC', '直接物料', 'CLC', 0.38, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4792801', 'STRIP AS', 'PC', '直接物料', 'CLC', 0.42, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4793260', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4796424', 'TAG-SHIPPING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4797766', 'BRACKET', 'PC', '直接物料', 'CLC', 1.01, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4803046', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.198, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4805098', 'FILM', 'PC', '直接物料', 'CLC', 1, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4806661', 'LOCK', 'PC', '直接物料', 'CLC', 0.799, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4815784', 'PLATE', 'PC', '直接物料', 'CLC', 0.488, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4820435', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.402, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4827489', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.14, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4830424', 'LOCKNUT', 'PC', '直接物料', 'CLC', 74, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4832517', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.058, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4834909', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.492, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4834923', 'STUD-BOLT', 'PC', '直接物料', 'CLC', 0.065, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4837806', 'SPACER', 'PC', '直接物料', 'CLC', 0.094, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4841271', 'BRACKET', 'PC', '直接物料', 'CLC', 0.787, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4844856', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.132, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4845075', 'FILM-NOTICE', 'PC', '直接物料', 'CLC', 0.002, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4847654', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 2, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4858985', 'CLIP-HALF SLOT', 'PC', '直接物料', 'CLC', 0.018, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4858986', 'CLIP-HALF TAB', 'PC', '直接物料', 'CLC', 0.015, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4862249', 'BRACKET', 'PC', '直接物料', 'CLC', 1.091, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4864552', 'BRACKET', 'PC', '直接物料', 'CLC', 0.307, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4864553', 'BRACKET', 'PC', '直接物料', 'CLC', 0.345, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4865117', 'PLATE', 'PC', '直接物料', 'CLC', 0.184, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4867968', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 1.45, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4869176', 'PLATE', 'PC', '直接物料', 'CLC', 0.699, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4869177', 'BRACKET', 'PC', '直接物料', 'CLC', 1.226, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4876473', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 26, 'G', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4878662', 'BRACKET', 'PC', '直接物料', 'CLC', 0.055, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4878663', 'BRACKET', 'PC', '直接物料', 'CLC', 0.051, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4883073', 'BOLT - 12 POINT HEAD', 'PC', '直接物料', 'CLC', 0.23, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4883237', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.13, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4883971', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.033, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4883974', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.034, 'KG', '170', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4884820', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.134, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4886049', 'BRACKET-RH', 'PC', '直接物料', 'CLC', 1.338, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4886050', 'BRACKET-LH', 'PC', '直接物料', 'CLC', 1.339, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4886051', 'BRACKET-LH', 'PC', '直接物料', 'CLC', 1.081, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887064', 'ACTUATOR', 'PC', '直接物料', 'CLC', 0.2, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887066', 'BRACKET', 'PC', '直接物料', 'CLC', 0.5, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887067', 'CABLE-DETECTION', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887074', 'RESISTOR AS-EOL', 'PC', '直接物料', 'CLC', 0.1, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887077', 'CABLE AS-DETN', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887078', 'CABLE AS-DETN', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887079', 'CABLE-DETECTION', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887084', 'CABLE AS-RELEASE', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887089', 'CABLE-RELEASE', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887095', 'CABLE AS-DISPLAY', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887097', 'CABLE-DISPLAY', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887101', 'BULKHEAD AS', 'PC', '直接物料', 'CLC', 0.45, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887133', 'NOZZLE', 'PC', '直接物料', 'CLC', 0.178, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4887138', 'CABLE', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4889554', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.565, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4890455', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.338, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4890985', 'PLATE', 'PC', '直接物料', 'CLC', 0.116, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4893369', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.21, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4894873', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.39, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4900350', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.247, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4900578', 'PLUG AS-CONN', 'PC', '直接物料', 'CLC', 0.005, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4900579', 'ADAPTER AS-CONN', 'PC', '直接物料', 'CLC', 0.008, 'KG', '106', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4900586', 'BACKSHELL-CONN', 'PC', '直接物料', 'CLC', 0.001, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4900588', 'NUT-PANEL', 'PC', '直接物料', 'CLC', 0.002, 'KG', '106', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4900589', 'PLUG-SEAL', 'PC', '直接物料', 'CLC', 1, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901103', 'LEVER', 'PC', '直接物料', 'CLC', 0.18, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901104', 'LEVER', 'PC', '直接物料', 'CLC', 0.18, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901105', 'LEVER', 'PC', '直接物料', 'CLC', 0.17, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901106', 'LEVER', 'PC', '直接物料', 'CLC', 0.18, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901107', 'LEVER', 'PC', '直接物料', 'CLC', 0.18, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901108', 'RETAINER', 'PC', '直接物料', 'CLC', 0.006, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901122', 'BRACKET', 'PC', '直接物料', 'CLC', 0.185, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901143', 'RETAINER', 'PC', '直接物料', 'CLC', 0.023, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4901151', 'LEVER', 'PC', '直接物料', 'CLC', 0.18, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4902574', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.287, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4904245', 'WASHER-CONICAL', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1765', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4904781', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.443, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4905802', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.499, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4906723', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.274, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4906724', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.47, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4906740', 'CLAMP', 'PC', '直接物料', 'CLC', 0.28, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4908846', 'SCREW-PAN HEAD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4911256', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.335, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4911257', 'BRACKET', 'PC', '直接物料', 'CLC', 0.323, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4914040', 'PLATE', 'PC', '直接物料', 'CLC', 0.355, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4916705', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.087, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4918257', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.011, 'KG', '354', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4921817', 'CABLE', 'PC', '直接物料', 'CLC', 0.014, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4922073', 'HARNESS AS', 'PC', '直接物料', 'CLC', 1.059, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4922618', 'GROMMET', 'PC', '直接物料', 'CLC', 0.008, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4929980', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.606, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4930024', 'BLOCK', 'PC', '直接物料', 'CLC', 0.139, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4930025', 'BLOCK', 'PC', '直接物料', 'CLC', 0.127, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4934503', 'ADAPTER-FAN', 'PC', '直接物料', 'CLC', 1.875, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4934511', 'BAFFLE', 'PC', '直接物料', 'CLC', 0.136, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4934522', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.426, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4935487', 'GROMMET', 'PC', '直接物料', 'CLC', 0.029, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4935489', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.909, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4935498', 'PLATE', 'PC', '直接物料', 'CLC', 0.388, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4935518', 'PLATE', 'PC', '直接物料', 'CLC', 0.18, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4945016', 'BRACKET AS', 'PC', '直接物料', 'CLC', 1.159, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4956191', 'CLAMP', 'PC', '直接物料', 'CLC', 0.176, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4956196', 'BRACKET AS', 'PC', '直接物料', 'CLC', 1.353, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4956198', 'CLAMP', 'PC', '直接物料', 'CLC', 0.698, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4968206', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.5, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4973558', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.247, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4973589', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.417, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4973590', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.419, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4981650', 'BRACKET', 'PC', '直接物料', 'CLC', 0.44, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4981657', 'BUSHING AS-BANJO', 'PC', '直接物料', 'CLC', 0.083, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4981658', 'BUSHING AS-BANJO', 'PC', '直接物料', 'CLC', 0.1, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4981758', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.446, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4982713', 'PLATE AS', 'PC', '直接物料', 'CLC', 1.442, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4988523', 'COLLAR-MOUNTING', 'PC', '直接物料', 'CLC', 0.052, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4988532', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.344, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4994512', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.259, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4995524', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.048, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4999117', 'SENSOR GP-SPD -A', 'PC', '直接物料', 'CLC', 0.025, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4B0418', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.013, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4B4274', 'WASHER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4B4277', 'WASHER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4B5324', 'WASHER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '5000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4B7270', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 1.423, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4B9302', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.013, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D0577', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.104, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D0582', 'ELBOW-EXT PIPE', 'PC', '直接物料', 'CLC', 0.104, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D1212', 'GROMMET', 'PC', '直接物料', 'CLC', 4, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D2560', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.033, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D2886', 'CLIP', 'PC', '直接物料', 'CLC', 0.052, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D3704', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.019, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D3734', 'ELBOW-EXT PIPE', 'PC', '直接物料', 'CLC', 0.158, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D4064', 'ROD END-SPHER', 'PC', '直接物料', 'CLC', 70, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D4823', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.086, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D5292', 'RING-RETAINING', 'PC', '直接物料', 'CLC', 62, 'G', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D5497', 'SEAL-D-RING', 'PC', '直接物料', 'CLC', 20.16, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D6086', 'KEY', 'PC', '直接物料', 'CLC', 0.191, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D6466', 'CLIP', 'PC', '直接物料', 'CLC', 0.023, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D6585', 'ELBOW-PIPE', 'PC', '直接物料', 'CLC', 0.045, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D6695', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.017, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D6988', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.024, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D7388', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.053, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D7733', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.025, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D7735', 'CLIP', 'PC', '直接物料', 'CLC', 0.033, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D7794', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.007, 'KG', '260', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D8123', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.022, 'KG', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D8148', 'DOWEL', 'PC', '直接物料', 'CLC', 47, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D8318', 'SETSCREW-SQ HD', 'PC', '直接物料', 'CLC', 0.36, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4D9517', 'CLIP', 'PC', '直接物料', 'CLC', 0.049, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4E0770', 'CLIP', 'PC', '直接物料', 'CLC', 0.402, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4E1384', 'BUMPER AS-CONL', 'PC', '直接物料', 'CLC', 0.041, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4E2289', 'ANGLE AS', 'PC', '直接物料', 'CLC', 0.052, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4E3273', 'STRAP', 'PC', '直接物料', 'CLC', 68, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4E5685', 'SPACER', 'PC', '直接物料', 'CLC', 0.091, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4E5985', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 18, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4E8957', 'GROMMET', 'PC', '直接物料', 'CLC', 0.003, 'KG', '222', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4F2861', 'NIPPLE', 'PC', '直接物料', 'CLC', 0.041, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4F6464', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 87, 'G', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4F6568', 'SPACER', 'PC', '直接物料', 'CLC', 100, 'G', '44', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4F7389', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4F7827', 'BOLT-PLOW', 'PC', '直接物料', 'CLC', 0.139, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4F8824', 'SEAL -O- RING', 'PC', '直接物料', 'CLC', 4.3, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4H1225', 'WASHER', 'PC', '直接物料', 'CLC', 0.014, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4H2558', 'GROMMET', 'PC', '直接物料', 'CLC', 0.008, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4H6112', 'BREATHER AS', 'PC', '直接物料', 'CLC', 0.123, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4H6147', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.037, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4H6520', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 7, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4H6996', 'PIN-SPRING', 'PC', '直接物料', 'CLC', 8, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4I0472', 'CLIP', 'PC', '直接物料', 'CLC', 0.025, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4I0755/HE', 'NUT HEX', 'PC', '直接物料', 'CLC', 0.01, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4I1205/HE', 'BUMPER', 'PC', '直接物料', 'CLC', 0.044, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4I3953/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.073, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4I5480/HE', 'WASHER', 'PC', '直接物料', 'CLC', 0.094, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4I7889/HE', 'SPACER', 'PC', '直接物料', 'CLC', 0.14, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J0520', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J0521', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J0522', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J0524', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J0527', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J0528', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J2506', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '720', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J5267', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J5351', 'SEAL O RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J5468', 'CLAMP', 'PC', '直接物料', 'CLC', 38, 'G', '170', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J5477', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.001, 'KG', '5000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4J8922', 'END-ROD', 'PC', '直接物料', 'CLC', 44, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K0367', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.032, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K1388', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K4879', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 79, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K6177', 'CLIP', 'PC', '直接物料', 'CLC', 0.035, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K6781', 'SPACER', 'PC', '直接物料', 'CLC', 1.109, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K6804', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.009, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K7462', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 0.145, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K7463', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 85, 'G', '46', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K7465', 'SHIM-PACK', 'PC', '直接物料', 'CLC', 42.7, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K8302', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.038, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4K8864', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.016, 'KG', '180', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4L6454', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.023, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4L6459', 'BOLT', 'PC', '直接物料', 'CLC', 0.046, 'KG', '270', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4M5281', 'BOLT', 'PC', '直接物料', 'CLC', 0.007, 'KG', '1600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4M5317', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.021, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4M6425', 'BOLT', 'PC', '直接物料', 'CLC', 0.013, 'KG', '800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4M8973', 'ELBOW-90 DEGREE', 'PC', '直接物料', 'CLC', 0.039, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4N5091', 'SPACER', 'PC', '直接物料', 'CLC', 0.245, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4N8150', 'SPRING', 'PC', '直接物料', 'CLC', 24, 'G', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4N8227', 'CORD AS-JWH', 'PC', '直接物料', 'CLC', 0.227, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4P7048', 'BRACKET', 'PC', '直接物料', 'CLC', 39, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4P7428', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.024, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4P7429', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.023, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4P7581', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.026, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4P7582', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.025, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4P8134', 'CLIP-LADDER', 'PC', '直接物料', 'CLC', 0.029, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S1962', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.09, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S4455', 'CLIP', 'PC', '直接物料', 'CLC', 0.068, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S4456', 'CLIP', 'PC', '直接物料', 'CLC', 45, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S5565', 'BOLT', 'PC', '直接物料', 'CLC', 0.002, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S5719', 'SPACER', 'PC', '直接物料', 'CLC', 0.039, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S5780', 'ROD-EYE', 'PC', '直接物料', 'CLC', 0.328, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S5879', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.02, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S6678', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.133, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4S7606', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.083, 'KG', '110', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4T8050', 'SPACER', 'PC', '直接物料', 'CLC', 85, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4V4125', 'Clip', 'PC', '直接物料', 'CLC', 0.109, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4V7081', 'STRAP', 'PC', '直接物料', 'CLC', 99, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4W1203', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 63, 'G', '52', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4W1204', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 0.121, 'KG', '64', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4W2042', 'SPACER', 'PC', '直接物料', 'CLC', 0.169, 'KG', '39', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4W9160', 'CLAMP-V-BAND', 'PC', '直接物料', 'CLC', 0.24, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('4Y3046', 'WASHER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5000528', 'BRACKET', 'PC', '直接物料', 'CLC', 0.45, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5000713', 'PLATE', 'PC', '直接物料', 'CLC', 0.234, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5000714', 'PIN AS', 'PC', '直接物料', 'CLC', 0.086, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5002892', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.084, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5003208', 'TUBE AS', 'PC', '直接物料', 'CLC', 1.092, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5003554', 'TUBE', 'PC', '直接物料', 'CLC', 0.38, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5003555', 'TUBE', 'PC', '直接物料', 'CLC', 0.59, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5006029', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.19, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5006257', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.032, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5011100', 'BRACKET', 'PC', '直接物料', 'CLC', 0.182, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5013953', 'BRACKET', 'PC', '直接物料', 'CLC', 0.631, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5014877', 'PLATE', 'PC', '直接物料', 'CLC', 0.18, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5019116', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.372, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5023343', 'PLATE', 'PC', '直接物料', 'CLC', 0.957, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5026363', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.051, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5026578', 'PLATE', 'PC', '直接物料', 'CLC', 0.938, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5036487', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.07, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5036517', 'BOSS', 'PC', '直接物料', 'CLC', 0.23, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5041365', 'FILM-INTERFERENCE CAUSING EQIPMENT', 'PC', '直接物料', 'CLC', 0.001, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5048493', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.004, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5049576/CS', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.313, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5053153', 'ENDBELL-CONN', 'PC', '直接物料', 'CLC', 0.003, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5054777', 'BLOCK', 'PC', '直接物料', 'CLC', 0.103, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5057955', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.028, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5062618', 'FILM-FILTER', 'PC', '直接物料', 'CLC', 2, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5069622', 'FILM-GREASE', 'PC', '直接物料', 'CLC', 0.013, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5069650', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.638, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5069819', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.25, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5071674', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.211, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5072556', 'FILM-ENG COOLANT (INST)', 'PC', '直接物料', 'CLC', 0.004, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5076055', 'BRACKET', 'PC', '直接物料', 'CLC', 0.301, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5078354', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.16, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5086802', 'BUSHING AS-BANJO', 'PC', '直接物料', 'CLC', 0.14, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5086878', 'STRIP', 'PC', '直接物料', 'CLC', 0.162, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5086895', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.655, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5097459', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.179, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5098534', 'PLATE', 'PC', '直接物料', 'CLC', 0.808, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5110281', 'TUBE AS', 'PC', '直接物料', 'CLC', 1.677, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5110911', 'BOLT-STACKING', 'PC', '直接物料', 'CLC', 0.043, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5114654', 'SPACER', 'PC', '直接物料', 'CLC', 0.403, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5122038', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.18, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5125912', 'PEDAL-GOV CONT', 'PC', '直接物料', 'CLC', 0.457, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5125919', 'LEVER', 'PC', '直接物料', 'CLC', 0.364, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5125977', 'SPACER', 'PC', '直接物料', 'CLC', 0.032, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129020/CS', 'COVER', 'PC', '直接物料', 'CLC', 0.35, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129023/CS', 'COVER', 'PC', '直接物料', 'CLC', 1.85, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129038/CS', 'BRACKET', 'PC', '直接物料', 'CLC', 1.165, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129039/CS', 'BRACKET', 'PC', '直接物料', 'CLC', 1.059, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129041/CS', 'PLATE', 'PC', '直接物料', 'CLC', 0.189, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129043/CS', 'STEP AS', 'PC', '直接物料', 'CLC', 0.822, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129044/CS', 'BRACKET', 'PC', '直接物料', 'CLC', 1.064, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129045/CS', 'BRACKET', 'PC', '直接物料', 'CLC', 1.165, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129867', 'HOSE', 'PC', '直接物料', 'CLC', 0.274, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129874', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.305, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5129912', 'PISTON', 'PC', '直接物料', 'CLC', 0.75, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5136521', 'BRACKET AS', 'PC', '直接物料', 'CLC', 1.52, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5138087', 'CABLE AS-DETN', 'PC', '直接物料', 'CLC', 0.333, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5141950', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 18, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5143923', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.1, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5144177', 'BLOCK', 'PC', '直接物料', 'CLC', 0.4, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5144178', 'BLOCK', 'PC', '直接物料', 'CLC', 0.4, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5152478', 'CLIP', 'PC', '直接物料', 'CLC', 0.021, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5154605', 'ARMREST GP', 'PC', '直接物料', 'CLC', 0.97, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5154606', 'ARMREST GP', 'PC', '直接物料', 'CLC', 0.9, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5156109', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.408, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5156110', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.349, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5156111', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.349, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5158775', 'LOCK', 'PC', '直接物料', 'CLC', 0.164, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5160219', 'PLATE', 'PC', '直接物料', 'CLC', 0.003, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5162801', 'BRACKET AS-LH', 'PC', '直接物料', 'CLC', 0.58, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5162802', 'BRACKET AS-RH', 'PC', '直接物料', 'CLC', 0.582, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5164100', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.54, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5171128', 'SHIM', 'PC', '直接物料', 'CLC', 70, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5179933', 'BRACKET', 'PC', '直接物料', 'CLC', 0.425, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5179947', 'BRACKET', 'PC', '直接物料', 'CLC', 0.045, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5181213', 'CLAMP', 'PC', '直接物料', 'CLC', 0.388, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5184092', 'BRACKET AS', 'PC', '直接物料', 'CLC', 4.213, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5185079', 'HOSE-FUEL', 'PC', '直接物料', 'CLC', 0.381, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5190831', 'CLAMP', 'PC', '直接物料', 'CLC', 0.041, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5191319', 'CLAMP', 'PC', '直接物料', 'CLC', 0.067, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5194102', 'BREAKER AS-CKT', 'PC', '直接物料', 'CLC', 0.265, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5199582', 'BRACKET', 'PC', '直接物料', 'CLC', 0.696, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5199583', 'BRACKET AS', 'PC', '直接物料', 'CLC', 1.209, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5202402', 'PLATE AS', 'PC', '直接物料', 'CLC', 1, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5207413', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.558, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5207418', 'SPACER', 'PC', '直接物料', 'CLC', 0.47, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5207482', 'LATCH AS', 'PC', '直接物料', 'CLC', 0.007, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5218931', 'BRACKET', 'PC', '直接物料', 'CLC', 0.335, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5218932', 'BRACKET', 'PC', '直接物料', 'CLC', 0.303, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5220006', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.46, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5229166', 'VALVE GP-PRESS-B', 'PC', '直接物料', 'CLC', 0.52, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5236921', 'PLATE', 'PC', '直接物料', 'CLC', 0.381, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5239207', 'BRACKET', 'PC', '直接物料', 'CLC', 0.126, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5239208', 'BRACKET', 'PC', '直接物料', 'CLC', 0.125, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5243636', 'PLATE', 'PC', '直接物料', 'CLC', 0.789, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5243641', 'FILM', 'PC', '直接物料', 'CLC', 0.11, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5243642', 'PLATE-INST (A/C)', 'PC', '直接物料', 'CLC', 0.005, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5248683', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.41, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5248684', 'BRACKET', 'PC', '直接物料', 'CLC', 0.17, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5255786', 'VALVE GP-MTG&', 'PC', '直接物料', 'CLC', 0.731, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5259116', 'PANEL', 'PC', '直接物料', 'CLC', 0.728, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5260917', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.185, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5260962', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.174, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5265763', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.211, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5265795', 'BRACKET', 'PC', '直接物料', 'CLC', 0.519, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5265797', 'BRACKET', 'PC', '直接物料', 'CLC', 0.261, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5280592', 'BRACKET', 'PC', '直接物料', 'CLC', 1.062, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5281022', 'HARNESS AS', 'PC', '直接物料', 'CLC', 1.416, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5282408', 'SWITCH AS-ROCKER', 'PC', '直接物料', 'CLC', 27, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5289084', 'TUBE', 'PC', '直接物料', 'CLC', 0.18, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5289087', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.026, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5296539', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.035, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5328166', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.11, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5328181', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.91, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5328183', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.183, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5328186', 'BLOCK-RUBBER', 'PC', '直接物料', 'CLC', 0.13, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5328187', 'PLATE', 'PC', '直接物料', 'CLC', 0.27, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5328189', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.587, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5330977/CS', 'PLATE', 'PC', '直接物料', 'CLC', 0.181, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5334159', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.032, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5350584/VA', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.091, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5366375', 'COVER', 'PC', '直接物料', 'CLC', 0.384, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5369987', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.089, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5375528', 'HINGE', 'PC', '直接物料', 'CLC', 0.31, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5375529', 'HINGE', 'PC', '直接物料', 'CLC', 0.23, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5381311', 'BUMPER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5385352', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.415, 'KG', '7', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5410707', 'ADAPTER ELBOW', 'PC', '直接物料', 'CLC', 1.218, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416340', 'LAMP GP-FLOOD', 'PC', '直接物料', 'CLC', 0.195, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416625', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.042, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416629', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.094, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416630', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.013, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416631', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.03, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416632', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.033, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416633', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.029, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416635', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.056, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416636', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.033, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416637', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.024, 'KG', '110', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416638', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 18, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5416639', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.011, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5439477', 'PLATE', 'PC', '直接物料', 'CLC', 0.453, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5452647', 'BRACKET', 'PC', '直接物料', 'CLC', 0.073, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5461105', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 0.12, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5464959', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.134, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5464964', 'GROMMET', 'PC', '直接物料', 'CLC', 0.208, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5464967', 'PLATE', 'PC', '直接物料', 'CLC', 0.18, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5474492', 'INDICATOR-LEVEL', 'PC', '直接物料', 'CLC', 65, 'G', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5490577', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.394, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5490593', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.399, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5501053', 'CLAMP AS', 'PC', '直接物料', 'CLC', 1.107, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5501057', 'CLAMP', 'PC', '直接物料', 'CLC', 0.186, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5503301', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.31, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5503302', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.265, 'KG', '28', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5503304', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.735, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5503392', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.298, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5510920', 'COVER', 'PC', '直接物料', 'CLC', 0.385, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5511681', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.285, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5514181', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.097, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5524385', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.871, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5525367', 'STRAINER GP', 'PC', '直接物料', 'CLC', 2.585, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5525383', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.259, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5532649', 'HOSE', 'PC', '直接物料', 'CLC', 0.573, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5535876', 'PLATE', 'PC', '直接物料', 'CLC', 0.244, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5537005', 'HOUSING AS-FRONT', 'PC', '直接物料', 'CLC', 0.149, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5537006', 'HOUSING AS-REAR', 'PC', '直接物料', 'CLC', 0.086, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5554664', 'BRACKET', 'PC', '直接物料', 'CLC', 0.084, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5574327', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 47, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5575018', 'PLATE', 'PC', '直接物料', 'CLC', 0.164, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5584938', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.613, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5595641', 'HARNESS AS-AXLE', 'PC', '直接物料', 'CLC', 0.9, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5595642', 'HARNESS AS-AXLE', 'PC', '直接物料', 'CLC', 0.214, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5595650', 'HARNESS AS-STEER', 'PC', '直接物料', 'CLC', 0.153, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5599320', 'PLUG-TEST', 'PC', '直接物料', 'CLC', 0.23, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5603084', 'BRACKET-ENGINE', 'PC', '直接物料', 'CLC', 0.409, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5603286', 'PLATE', 'PC', '直接物料', 'CLC', 0.289, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5604990', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.39, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5604991', 'PLATE', 'PC', '直接物料', 'CLC', 0.416, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5621927', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.026, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5623191', 'HOSE', 'PC', '直接物料', 'CLC', 0.471, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5623243', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.525, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5626053', 'PLATE', 'PC', '直接物料', 'CLC', 0.242, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5626054', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.474, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5626680', 'PLATE', 'PC', '直接物料', 'CLC', 1.736, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5626724', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.197, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5630598/HE', 'SENSOR AS-IMU', 'PC', '直接物料', 'CLC', 0.4, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5633718', 'HOSE-COOLANT', 'PC', '直接物料', 'CLC', 0.109, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5635538', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.172, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5635539', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.172, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5636608', 'BOLT AS', 'PC', '直接物料', 'CLC', 0.059, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5640800', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.179, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5641186', 'CABLE-DETECTION', 'PC', '直接物料', 'CLC', 0.45, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5641187', 'CABLE-RELEASE', 'PC', '直接物料', 'CLC', 0.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5643229', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.158, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5666241', 'BRACKET', 'PC', '直接物料', 'CLC', 0.054, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5671944', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.357, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5671967', 'BLOCK', 'PC', '直接物料', 'CLC', 0.605, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5682056', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.823, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5692069', 'ACTUATOR AS', 'PC', '直接物料', 'CLC', 0.734, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5693397', 'HOUSING AS-FUEL', 'PC', '直接物料', 'CLC', 1.43, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5694781', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.234, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5695866', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.055, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5701630', 'HARNESS AS-AXLE', 'PC', '直接物料', 'CLC', 0.214, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5701834', 'HARNESS AS-LIGHT', 'PC', '直接物料', 'CLC', 0.27, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5708367', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.262, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5727658', 'PLATE', 'PC', '直接物料', 'CLC', 0.418, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5740285', 'SPACER', 'PC', '直接物料', 'CLC', 0.08, 'KG', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5763854', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.164, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5766220', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.141, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5779041', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.149, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5779044', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.242, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5807888', 'BUTTON AS-HORN', 'PC', '直接物料', 'CLC', 0.042, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5825454', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.199, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5829201', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.461, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5833743', 'GEAR-PLANET', 'PC', '直接物料', 'CLC', 2.566, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5835104', 'RECEIVER AS', 'PC', '直接物料', 'CLC', 0.408, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5844875', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.051, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5847312', 'PLATE AS', 'PC', '直接物料', 'CLC', 0.284, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5853109', 'CLIP AS', 'PC', '直接物料', 'CLC', 0.003, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5865070', 'HARNESS AS-LAMP', 'PC', '直接物料', 'CLC', 0.087, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5866482', 'PLATE - (EAC)', 'PC', '直接物料', 'CLC', 0.003, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5874551', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.831, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5874553', 'BLOCK', 'PC', '直接物料', 'CLC', 1.283, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5874558', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.261, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5874564', 'CLAMP', 'PC', '直接物料', 'CLC', 1.177, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5880075', 'COVER-TERMINAL', 'PC', '直接物料', 'CLC', 0.009, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5898868', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.086, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5900427', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.927, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5905559', 'LATCH', 'PC', '直接物料', 'CLC', 0.102, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5905560', 'PIN', 'PC', '直接物料', 'CLC', 0.075, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5925298', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.057, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5925299', 'SENSOR GP-PRESS', 'PC', '直接物料', 'CLC', 0.057, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5931062', 'HARNESS AS-LIGHT', 'PC', '直接物料', 'CLC', 0.515, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5935477', 'BRACKET AS-HITCH', 'PC', '直接物料', 'CLC', 0.39, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5935480', 'BRACKET AS-REAR', 'PC', '直接物料', 'CLC', 0.453, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5935985', 'BRACKET', 'PC', '直接物料', 'CLC', 0.121, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5936132', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.295, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5939721', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.894, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5951954', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.174, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5951955', 'TUBE AS', 'PC', '直接物料', 'CLC', 0.188, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5956522', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.168, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5967702', 'BRACKET-LIGHT', 'PC', '直接物料', 'CLC', 0.116, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5967703', 'BRACKET-LIGHT', 'PC', '直接物料', 'CLC', 0.116, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5972062', 'BRACE', 'PC', '直接物料', 'CLC', 0.469, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5980029', 'PLATE', 'PC', '直接物料', 'CLC', 0.456, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5980031', 'PLATE', 'PC', '直接物料', 'CLC', 0.329, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5980035', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.07, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5990237', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.664, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5995838', 'HARNESS AS-LIFT', 'PC', '直接物料', 'CLC', 0.021, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5B0577', 'COLLAR', 'PC', '直接物料', 'CLC', 0.76, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5B0651', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 18, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5B0841', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.103, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5B1585', 'ELBOW', 'PC', '直接物料', 'CLC', 0.136, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5B3180', 'NUT-JAM', 'PC', '直接物料', 'CLC', 0.003, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5C2874', 'NUT', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5C2890', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.003, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5C6565', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.053, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5C7261', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.005, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5C8312', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5C9553', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5C9583', 'LAMP', 'PC', '直接物料', 'CLC', 0.005, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5D0353', 'BOLT-LOCKING', 'PC', '直接物料', 'CLC', 0.021, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5D1026', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.026, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5D2645', 'CLAMP', 'PC', '直接物料', 'CLC', 0.109, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5D5206', 'WASHER-NOTCHED', 'PC', '直接物料', 'CLC', 0.27, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5D6523', 'CLIP', 'PC', '直接物料', 'CLC', 0.022, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5D8159', 'PIN AS - LOCK', 'PC', '直接物料', 'CLC', 0.016, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5D8161', 'PIN', 'PC', '直接物料', 'CLC', 0.294, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5D9844', 'BOLT-LOCKING', 'PC', '直接物料', 'CLC', 0.033, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5F0149', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.009, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5F3106', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.02, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5F5434', 'VENT AS.', 'PC', '直接物料', 'CLC', 11, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5F8933', 'BOLT-PLOW', 'PC', '直接物料', 'CLC', 0.249, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5F9144', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5F9757', 'GROMMET', 'PC', '直接物料', 'CLC', 0.014, 'KG', '126', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5G3676', 'GROMMET-DUAL FLG', 'PC', '直接物料', 'CLC', 0.01, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H2730', 'ASKET', 'PC', '直接物料', 'CLC', 5, 'G', '52', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H3252', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.006, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H3701', 'SCREW-BLEEDER', 'PC', '直接物料', 'CLC', 20, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H4019', 'COVER', 'PC', '直接物料', 'CLC', 0.078, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H4020', 'FLANGE-COVER', 'PC', '直接物料', 'CLC', 0.1, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H4778', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.09, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H4909', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 22, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H5672', 'SEAL-O-RING (T01382 67457 )', 'PC', '直接物料', 'CLC', 10.5, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5H7826', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 8, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5I3050/HE', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.046, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5I4376/HE', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.124, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5J1086', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.014, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5J4771', 'BOLT-PLOW', 'PC', '直接物料', 'CLC', 0.193, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5J4773', 'BOLT-PLOW', 'PC', '直接物料', 'CLC', 0.155, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5J7013', 'SEAL AS', 'PC', '直接物料', 'CLC', 0.014, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K0984', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.616, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K1094', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.004, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K1458', 'GROMMET', 'PC', '直接物料', 'CLC', 2, 'G', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K2298', 'CLIP', 'PC', '直接物料', 'CLC', 0.008, 'KG', '290', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K2408', 'NIPPLE-HEX', 'PC', '直接物料', 'CLC', 35, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K3294', 'CLIP', 'PC', '直接物料', 'CLC', 0.024, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K3491', 'SPACER', 'PC', '直接物料', 'CLC', 1.256, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K3492', 'SHIM PACK', 'PC', '直接物料', 'CLC', 0.451, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K3494', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 1.291, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K3496', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 3.029, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K5338', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.04, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K7143', 'BOLT-LOCKING', 'PC', '直接物料', 'CLC', 0.052, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K8451', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.096, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K8454', 'BOLT-LOCKING', 'PC', '直接物料', 'CLC', 0.045, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K9090', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K9107', 'BOLT-LOCKING', 'PC', '直接物料', 'CLC', 0.017, 'KG', '750', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K9238', 'CONNECTOR-FLARED', 'PC', '直接物料', 'CLC', 0.04, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K9243', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.021, 'KG', '450', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5K9979', 'CONNECTOR-FLARED', 'PC', '直接物料', 'CLC', 14, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5L2030', 'CONE-ROLLER BRG', 'PC', '直接物料', 'CLC', 1.2, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5L2031', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.616, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5L4504', 'CLIP', 'PC', '直接物料', 'CLC', 0.057, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5L4507', 'SCREW-MACHINE', 'PC', '直接物料', 'CLC', 0.004, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5L5502', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.227, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5L9316', 'CLAMP-V-BAND', 'PC', '直接物料', 'CLC', 0.4, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5M2894', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '2500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5M3062', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.018, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5M6213', 'PLUG-NPTF', 'PC', '直接物料', 'CLC', 0.019, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5M6214', 'PLUG-NPTF', 'PC', '直接物料', 'CLC', 0.009, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5M8500', 'KNOB', 'PC', '直接物料', 'CLC', 0.023, 'KG', '115', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P0047', 'COVER', 'PC', '直接物料', 'CLC', 0.163, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P0597', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.055, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P0599', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 67, 'G', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P0600', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 89, 'G', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P1075', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.007, 'KG', '1400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P1076', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.018, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P1174', 'FILM-XMSN OIL', 'PC', '直接物料', 'CLC', 0.454, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P2228', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.041, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P2230', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.034, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P2369', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.047, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P2424', 'BOLT', 'PC', '直接物料', 'CLC', 0.067, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P2503', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.572, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P2504', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 1.134, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P2671', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 50, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P2861', 'SEAL', 'PC', '直接物料', 'CLC', 14, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P3166', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.13, 'KG', '55', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P3193', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 47, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P3422', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.048, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P3490', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 1.555, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P3741', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 45, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P3860', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 77, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P3929', 'COUPLING-REFRIGERANT(SELF-SEALING)', 'PC', '直接物料', 'CLC', 0.263, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P3948', 'COUPLING-RFGT', 'PC', '直接物料', 'CLC', 0.15, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4107', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.019, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4115', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '3000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4116', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '2700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4135', 'BOLT', 'PC', '直接物料', 'CLC', 0.498, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4295', 'CLIP', 'PC', '直接物料', 'CLC', 0.039, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4325', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.109, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4424', 'ELBOW', 'PC', '直接物料', 'CLC', 49, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4868', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 49, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4869', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.081, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P4961', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.02, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P5072', 'RING-RETAINING', 'PC', '直接物料', 'CLC', 0.036, 'KG', '110', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P5813', 'LOCKNUT-BEARING', 'PC', '直接物料', 'CLC', 0.286, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P6264', 'GROMMET', 'PC', '直接物料', 'CLC', 0.01, 'KG', '140', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P6629', 'GROMMET', 'PC', '直接物料', 'CLC', 0.023, 'KG', '82', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P6863', 'CLIP', 'PC', '直接物料', 'CLC', 0.1, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P6864', 'CLIP', 'PC', '直接物料', 'CLC', 0.127, 'KG', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7154', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.584, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7175', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 25, 'G', '170', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7213', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7462', 'CLIP', 'PC', '直接物料', 'CLC', 0.099, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7463', 'CLIP', 'PC', '直接物料', 'CLC', 0.086, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7464', 'CLIP-HALF SLOT', 'PC', '直接物料', 'CLC', 0.123, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7465', 'CLIP-HALF TANG', 'PC', '直接物料', 'CLC', 0.094, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7466', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.196, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7467', 'CLIP-BOTTOM', 'PC', '直接物料', 'CLC', 0.146, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7468', 'CLIP-HALF SLOT', 'PC', '直接物料', 'CLC', 0.212, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7469', 'CLIP-HALF TANG', 'PC', '直接物料', 'CLC', 0.158, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7470', 'CLIP-HALF SLOT', 'PC', '直接物料', 'CLC', 0.265, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7471', 'CLIP-HALF TANG', 'PC', '直接物料', 'CLC', 0.189, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7648', 'GROMMET', 'PC', '直接物料', 'CLC', 0.009, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7701', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '720', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7703', 'GROMMET', 'PC', '直接物料', 'CLC', 0.114, 'KG', '7', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7705', 'PLUG-BUTTON', 'PC', '直接物料', 'CLC', 0.005, 'KG', '96', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7854', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.099, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P7958', 'SLEEVE-CA SPLICE', 'PC', '直接物料', 'CLC', 0.005, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8112', 'GROMMET', 'PC', '直接物料', 'CLC', 0.088, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8167', 'BOLT', 'PC', '直接物料', 'CLC', 0.016, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8182', 'GROMMET', 'PC', '直接物料', 'CLC', 0.147, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8244', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8245', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.008, 'KG', '1200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8247', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.016, 'KG', '660', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8248', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '470', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8291', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 0.153, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8439', 'GROMMET', 'PC', '直接物料', 'CLC', 0.004, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8440', 'GROMMET', 'PC', '直接物料', 'CLC', 0.005, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8444', 'GROMMET', 'PC', '直接物料', 'CLC', 0.103, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8501', 'PAD-LOCK', 'PC', '直接物料', 'CLC', 0.189, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8843', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.023, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8847', 'SEAL', 'PC', '直接物料', 'CLC', 0.036, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8890', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 9, 'G', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P8939', 'GROMMET', 'PC', '直接物料', 'CLC', 0.023, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P9085', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.009, 'KG', '210', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P9135', 'GROMMET,AIR CONDITIONER', 'PC', '直接物料', 'CLC', 0.009, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P9147', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 15, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P9209', 'BEARING-ROLLER', 'PC', '直接物料', 'CLC', 11, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P9212', 'PLUG', 'PC', '直接物料', 'CLC', 23, 'G', '85', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P9297', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.02, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5P9299', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.022, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5R4787', 'PLATE', 'PC', '直接物料', 'CLC', 34, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5S7379', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.019, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5S7382', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.025, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5S7383', 'BOLT', 'PC', '直接物料', 'CLC', 0.032, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5S9062', 'SPACER', 'PC', '直接物料', 'CLC', 0.127, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T0906', 'COVER', 'PC', '直接物料', 'CLC', 0.657, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T0907', 'COVER', 'PC', '直接物料', 'CLC', 0.919, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T2119', 'UNION-ADAPTER', 'PC', '直接物料', 'CLC', 0.091, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T4030', 'BRACKET', 'PC', '直接物料', 'CLC', 0.006, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T5295', 'PIN', 'PC', '直接物料', 'CLC', 1.315, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T6374', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.069, 'KG', '131', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T8224', 'SPACER', 'PC', '直接物料', 'CLC', 0.057, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T8285', 'BLOCK-JUNCTION', 'PC', '直接物料', 'CLC', 0.136, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T8417', 'PIN', 'PC', '直接物料', 'CLC', 1.108, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T9400', 'SPACER', 'PC', '直接物料', 'CLC', 100, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5T9628', 'PISTON', 'PC', '直接物料', 'CLC', 0.568, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5V6152', 'CLAMP-HALF', 'PC', '直接物料', 'CLC', 0.031, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5V6153', 'PLATE-COVER', 'PC', '直接物料', 'CLC', 45, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5V6454', 'WASHER', 'PC', '直接物料', 'CLC', 0.109, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5V6455', 'WASHER', 'PC', '直接物料', 'CLC', 0.211, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('5V9221', 'SPACER', 'PC', '直接物料', 'CLC', 0.067, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6008483', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.22, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6030396', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.291, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6031913', 'HARNESS AS', 'PC', '直接物料', 'CLC', 0.762, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6032231', 'PLATE', 'PC', '直接物料', 'CLC', 0.086, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6035190', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.538, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6035216', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.356, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6038900', 'NIPPLE AS-QDISC', 'PC', '直接物料', 'CLC', 0.044, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6047492', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.645, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6051983', 'PLATE', 'PC', '直接物料', 'CLC', 0.298, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6064534', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.314, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6065988', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.19, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6065989', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.155, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6067838', 'KNOB-BLADE TIP', 'PC', '直接物料', 'CLC', 62, 'G', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6067842', 'KNOB-RIPPER', 'PC', '直接物料', 'CLC', 62, 'G', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6067843', 'KNOB-WHEEL LEAN', 'PC', '直接物料', 'CLC', 62, 'G', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068521', 'KNOB-BLADE LIFT', 'PC', '直接物料', 'CLC', 62, 'G', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068522', 'KNOB-SIDE SHIFT', 'PC', '直接物料', 'CLC', 62, 'G', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068523', 'KNOB-CIRCLE DR', 'PC', '直接物料', 'CLC', 62, 'G', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068524', 'KNOB-ART', 'PC', '直接物料', 'CLC', 61, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068525', 'KNOB-SCARIFIER', 'PC', '直接物料', 'CLC', 0.062, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068528', 'KNOB-PLOW/DOZER', 'PC', '直接物料', 'CLC', 62, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068530', 'KNOB-CTR SHIFT', 'PC', '直接物料', 'CLC', 62, 'G', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068540', 'KNOB-BLADE LIFT', 'PC', '直接物料', 'CLC', 62, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068542', 'KNOB-WING', 'PC', '直接物料', 'CLC', 0.062, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068543', 'KNOB-WING', 'PC', '直接物料', 'CLC', 0.062, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6068544', 'KNOB', 'PC', '直接物料', 'CLC', 0.062, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6074946', 'RELAY AS', 'PC', '直接物料', 'CLC', 0.63, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6089568', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.309, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6091143', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.156, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6117396', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.5, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6117594', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.343, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6126333', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.995, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6147675', 'BRACKET', 'PC', '直接物料', 'CLC', 0.442, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6152494', 'CAP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6155811', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.965, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6194515', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.191, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6196024', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.073, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6198428', 'BRACKET', 'PC', '直接物料', 'CLC', 0.303, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6207911', 'BRACKET AS', 'PC', '直接物料', 'CLC', 0.103, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6215783', 'ADAPTER AS-TEE', 'PC', '直接物料', 'CLC', 0.314, 'KG', '26', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6216289', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.166, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6233741', 'SLEEVE AS', 'PC', '直接物料', 'CLC', 0.2, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6248842', 'CLAMP', 'PC', '直接物料', 'CLC', 0.189, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6248844', 'CLAMP', 'PC', '直接物料', 'CLC', 0.728, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6265436', 'DAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.13, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6271656', 'SPACER', 'PC', '直接物料', 'CLC', 0.855, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6271660', 'COVER', 'PC', '直接物料', 'CLC', 1.414, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6290479', 'BRACKET AS', 'PC', '直接物料', 'CLC', 2.286, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6290481', 'BRACKET AS', 'PC', '直接物料', 'CLC', 2.286, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6311913', 'NOZZLE GP-ETHER', 'PC', '直接物料', 'CLC', 0.47, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6311928', 'NOZZLE GP-ETHER', 'PC', '直接物料', 'CLC', 0.47, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6311939', 'NOZZLE GP-ETHER', 'PC', '直接物料', 'CLC', 0.47, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6335533', 'NOZZLE GP-ETHER', 'PC', '直接物料', 'CLC', 0.47, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6343619', 'FITTING AS-ORF', 'PC', '直接物料', 'CLC', 0.024, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6379680', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 47, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6A3591', 'TEE-STREET PIPE', 'PC', '直接物料', 'CLC', 0.186, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6B0933', 'SPACER', 'PC', '直接物料', 'CLC', 0.01, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6B5072', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.05, 'KG', '152', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6B5464', 'PIN-CLEVIS', 'PC', '直接物料', 'CLC', 0.43, 'KG', '27', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6B6205', 'SPACER', 'PC', '直接物料', 'CLC', 0.074, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6B6684', 'NUT-FULL', 'PC', '直接物料', 'CLC', 0.019, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6C3240', 'BOLT', 'PC', '直接物料', 'CLC', 99, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6C3241', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.054, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6C3285', 'BOLT', 'PC', '直接物料', 'CLC', 0.07, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6C5711/V', 'CABLE AS', 'PC', '直接物料', 'CLC', 0.1, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6C5712/V', 'REFLECTOR', 'PC', '直接物料', 'CLC', 0.05, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6C7875', 'RIVET-POP', 'PC', '直接物料', 'CLC', 0.005, 'KG', '158', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6C9149/V', 'WASHER', 'PC', '直接物料', 'CLC', 0.124, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D0580', 'TUBE', 'PC', '直接物料', 'CLC', 37, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D1432', 'VALVE-CHECK', 'PC', '直接物料', 'CLC', 0.136, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D1641', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.053, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D3479', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.027, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D4244', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.03, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D4246', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.021, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D4247', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.058, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D4636', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.078, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D7146', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6D8305', 'CLIP', 'PC', '直接物料', 'CLC', 0.365, 'KG', '23', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6E1926', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.94, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6E4701', 'VALVE GP-CHECK-E', 'PC', '直接物料', 'CLC', 0.04, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6F0612', 'NUT-JAM', 'PC', '直接物料', 'CLC', 0.002, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6F0698', 'PIN-DOWEL', 'PC', '直接物料', 'CLC', 3, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6F2956', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.535, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6F8499', 'SPRING', 'PC', '直接物料', 'CLC', 0.009, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G0905', 'BOLT-TAPERLOCK', 'PC', '直接物料', 'CLC', 94, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G1536', 'SPACER', 'PC', '直接物料', 'CLC', 0.248, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G2168', 'FLANGE-SPACER', 'PC', '直接物料', 'CLC', 1.36, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G2256', 'CLAMP', 'PC', '直接物料', 'CLC', 0.068, 'KG', '32', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G2263', 'SPACER', 'PC', '直接物料', 'CLC', 0.044, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G2914', 'LATCH-SPRING', 'PC', '直接物料', 'CLC', 0.042, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G3212', 'SHIM', 'PC', '直接物料', 'CLC', 0.187, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G4701', 'NUT', 'PC', '直接物料', 'CLC', 0.549, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G4702', 'NUT', 'PC', '直接物料', 'CLC', 0.744, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G4703', 'NUT', 'PC', '直接物料', 'CLC', 0.714, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G5537', 'BEARING', 'PC', '直接物料', 'CLC', 0.35, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G5538', 'COVER', 'PC', '直接物料', 'CLC', 0.847, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G5539', 'GASKET', 'PC', '直接物料', 'CLC', 21, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G5542', 'SPACER', 'PC', '直接物料', 'CLC', 0.912, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G5548', 'SPACER', 'PC', '直接物料', 'CLC', 0.701, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G6122', 'SPRING-DISC', 'PC', '直接物料', 'CLC', 0.962, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G7187', 'LOCK', 'PC', '直接物料', 'CLC', 0.159, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6G8814', 'BRACKET', 'PC', '直接物料', 'CLC', 0.18, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6H0211', 'WASHER', 'PC', '直接物料', 'CLC', 29, 'G', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6H1717', 'BOLT', 'PC', '直接物料', 'CLC', 0.045, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6H4005', 'GROMMET', 'PC', '直接物料', 'CLC', 0.014, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6H7062', 'SPACER', 'PC', '直接物料', 'CLC', 0.052, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6H9691', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 1, 'G', '945', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6I0572', 'BOLT-FLANGE HEAD', 'PC', '直接物料', 'CLC', 0.016, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6I1066', 'LOCKNUT-FLANGED', 'PC', '直接物料', 'CLC', 0.009, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6I1418', 'SPACER', 'PC', '直接物料', 'CLC', 0.016, 'KG', '550', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6I4200', 'BOLT-FLANGE HEAD', 'PC', '直接物料', 'CLC', 25, 'G', '450', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6I8792', 'SPRING', 'PC', '直接物料', 'CLC', 0.068, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6J0488', 'SCREW-BUTTON HD', 'PC', '直接物料', 'CLC', 17, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6J2680', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6J3958', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 22, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K0545', 'LOCKNUT', 'PC', '直接物料', 'CLC', 77, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K0715', 'PIN,MTG GP-RIPPER', 'PC', '直接物料', 'CLC', 5.54, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K1019', 'NIPPLE-PIPE(BRASS),CONT GP-BRAKE -G', 'PC', '直接物料', 'CLC', 0.028, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K3632', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.134, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K4185', 'SPACER', 'PC', '直接物料', 'CLC', 0.6, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K6444', 'SPACER', 'PC', '直接物料', 'CLC', 0.241, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K6826', 'ELBOW-FLARED', 'PC', '直接物料', 'CLC', 51, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K6967', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.026, 'KG', '325', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K8178', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.026, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K8329', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 1.055, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K8420', 'LOCKNUT-BULKHEAD', 'PC', '直接物料', 'CLC', 0.039, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K8987', 'DOWEL', 'PC', '直接物料', 'CLC', 0.106, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6K9632', 'TEE-HOSE', 'PC', '直接物料', 'CLC', 0.005, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6L1962', 'NUT-JAM (BRASS)', 'PC', '直接物料', 'CLC', 0.005, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6L3616', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 11, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6N1604', 'CAP AS-DUST', 'PC', '直接物料', 'CLC', 0.007, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6P0699', 'GROMMET', 'PC', '直接物料', 'CLC', 0.014, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6P4467', 'GROMMET', 'PC', '直接物料', 'CLC', 0.005, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6P6256', 'RETAINER-SPRING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6P6641', 'GROMMET', 'PC', '直接物料', 'CLC', 0.01, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6S5693', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.169, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6S6251', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 48, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6S6646', 'PIN-COTTER', 'PC', '直接物料', 'CLC', 0.007, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6S8620', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 6, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6S9277', 'PIN - CLEVIS', 'PC', '直接物料', 'CLC', 76, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6T0840', 'RING-SEAL', 'PC', '直接物料', 'CLC', 8, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6T3377', 'EAL GP DUO CONE', 'PC', '直接物料', 'CLC', 0.664, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6T6969', 'GUARD-SWITCH', 'PC', '直接物料', 'CLC', 0.016, 'KG', '46', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V0400', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.271, 'KG', '33', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V0405', 'SEAL-WASHER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V0545', 'GROMMET', 'PC', '直接物料', 'CLC', 0.061, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V0683', 'GROMMET', 'PC', '直接物料', 'CLC', 0.004, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V0826', 'GROMMET', 'PC', '直接物料', 'CLC', 0.019, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V0852', 'CAP-DUST', 'PC', '直接物料', 'CLC', 0.007, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V0894', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V0974', 'GROMMET', 'PC', '直接物料', 'CLC', 0.181, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1197', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.007, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1228', 'CLIP', 'PC', '直接物料', 'CLC', 0.054, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1230', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.086, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1249', 'GROMMET', 'PC', '直接物料', 'CLC', 0.045, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1581', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.315, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1582', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.178, 'KG', '66', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1616', 'CLIP-HALF', 'PC', '直接物料', 'CLC', 0.132, 'KG', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1635', 'RIVET POP', 'PC', '直接物料', 'CLC', 0.007, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1874', 'GROMMET', 'PC', '直接物料', 'CLC', 0.114, 'KG', '26', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1875', 'GROMMET', 'PC', '直接物料', 'CLC', 0.151, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1889', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.041, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V1911', 'BOLT-LOCKING', 'PC', '直接物料', 'CLC', 68, 'G', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V2235', 'CLIP', 'PC', '直接物料', 'CLC', 0.045, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V2313', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '246', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V2481', 'ADAPTOR - STR', 'PC', '直接物料', 'CLC', 0.125, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V2686', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.01, 'KG', '88', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V2687', 'SCREW-PAN HEAD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V2857', 'GROMMET', 'PC', '直接物料', 'CLC', 0.045, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V2858', 'GROMMET', 'PC', '直接物料', 'CLC', 9.072, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V3251', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V3265', 'CLIP', 'PC', '直接物料', 'CLC', 0.012, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V3303', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.134, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V3378', 'CLIP', 'PC', '直接物料', 'CLC', 0.09, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V3532', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.225, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V3668', 'BOLT', 'PC', '直接物料', 'CLC', 0.033, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V3669', 'BOLT', 'PC', '直接物料', 'CLC', 0.187, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V3965', 'NIPPLE-QDISC', 'PC', '直接物料', 'CLC', 0.029, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V4249', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.034, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V4283', 'PLATE-ALTERNATOR', 'PC', '直接物料', 'CLC', 0.004, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V4292', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.107, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V4349', 'GROMMET', 'PC', '直接物料', 'CLC', 0.115, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V4356', 'CLIP', 'PC', '直接物料', 'CLC', 0.045, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V4357', 'CLIP', 'PC', '直接物料', 'CLC', 0.212, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V4368', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V4604', 'RIVET-POP', 'PC', '直接物料', 'CLC', 9.072, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5039', 'CLIP-TOP', 'PC', '直接物料', 'CLC', 0.371, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5040', 'CLIP', 'PC', '直接物料', 'CLC', 0.19, 'KG', '55', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5048', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5063', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5217', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.011, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5266', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5686', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.118, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5696', 'BOLT', 'PC', '直接物料', 'CLC', 0.08, 'KG', '140', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5839', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.005, 'KG', '2580', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5842', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.036, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5844', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.085, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V5845', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.249, 'KG', '56', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V6353', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.006, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V6467', 'PLUG', 'PC', '直接物料', 'CLC', 27, 'G', '83', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V6609', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V6707', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V6889', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.005, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V6893', 'SCREW-MACH-HEX', 'PC', '直接物料', 'CLC', 2.268, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7357', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.008, 'KG', '1300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7359', 'GROMMET', 'PC', '直接物料', 'CLC', 0.045, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7383', 'CLIP', 'PC', '直接物料', 'CLC', 0.039, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7535', 'ELBOW-PIPE', 'PC', '直接物料', 'CLC', 0.041, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7676', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.097, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7687', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.014, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7688', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.074, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7697', 'SCREW-MACHINE', 'PC', '直接物料', 'CLC', 0.003, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7699', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7732', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.022, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7742', 'NUT HEX FULL', 'PC', '直接物料', 'CLC', 0.075, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7743', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.005, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V7744', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.009, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8004', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.113, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8132', 'BOLT', 'PC', '直接物料', 'CLC', 0.556, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8182', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.051, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8183', 'NUT-FULL', 'PC', '直接物料', 'CLC', 0.008, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8185', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.004, 'KG', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8186', 'NUT-FULL', 'PC', '直接物料', 'CLC', 0.01, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8188', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.019, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8189', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.006, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8197', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.052, 'KG', '225', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8214', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.008, 'KG', '1200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8237', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.031, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8336', 'BOLT', 'PC', '直接物料', 'CLC', 0.069, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8367', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.003, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8368', 'NUT', 'PC', '直接物料', 'CLC', 1, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8397', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.001, 'KG', '3300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8398', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.001, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8400', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.35, 'G', '210', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8467', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8490', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.008, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8557', 'NUT-SWIVEL', 'PC', '直接物料', 'CLC', 0.129, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8636', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.044, 'KG', '165', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8647', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.028, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8653', 'BOLT-SOCKET HD', 'PC', '直接物料', 'CLC', 0.008, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8724', 'ADPTR-ELB 90 DEG', 'PC', '直接物料', 'CLC', 0.161, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8765', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.01, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8801', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.007, 'KG', '1600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8918', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.019, 'KG', '680', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8935', 'REDUCER', 'PC', '直接物料', 'CLC', 29, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V8987', 'ADAPTER - ELBOW 45 DEG', 'PC', '直接物料', 'CLC', 0.163, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9027', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.11, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9028', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9168', 'NUT-BULKHEAD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '450', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9169', 'NUT-LOCK', 'PC', '直接物料', 'CLC', 0.026, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9170', 'NUT-BULKHEAD', 'PC', '直接物料', 'CLC', 0.038, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9172', 'LOCKNUT-BULKHEAD', 'PC', '直接物料', 'CLC', 0.056, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9507', 'PLUG-ORFS', 'PC', '直接物料', 'CLC', 0.022, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9666', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 41, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9746', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9748', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 47, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9828', 'CAP-ORFS', 'PC', '直接物料', 'CLC', 0.022, 'KG', '420', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9829', 'CAP', 'PC', '直接物料', 'CLC', 0.036, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9830', 'CAP', 'PC', '直接物料', 'CLC', 0.056, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9832', 'CAP', 'PC', '直接物料', 'CLC', 0.14, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9833', 'CAP', 'PC', '直接物料', 'CLC', 0.215, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6V9849', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 57, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6W2888', 'NIPPLE AS', 'PC', '直接物料', 'CLC', 0.184, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6W2890', 'CAP A', 'PC', '直接物料', 'CLC', 32, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6W5458', 'SPACER', 'PC', '直接物料', 'CLC', 21, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6W5817', 'SPRING', 'PC', '直接物料', 'CLC', 27, 'G', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6W6672', 'SPACER', 'PC', '直接物料', 'CLC', 0.068, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6Y7953', 'DISC-FRICTION', 'PC', '直接物料', 'CLC', 0.19, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6Y7954', 'DISC-FRICTION', 'PC', '直接物料', 'CLC', 0.234, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6Y7955', 'DISC-FRICTION', 'PC', '直接物料', 'CLC', 0.211, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6Y9915', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 0.272, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('6Y9950', 'MOUNT AS', 'PC', '直接物料', 'CLC', 1.107, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7B1597', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 15, 'G', '115', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7C4354', 'CLIP', 'PC', '直接物料', 'CLC', 0.024, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7C8368', 'SHAFT', 'PC', '直接物料', 'CLC', 1.277, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7C8370', 'CAP', 'PC', '直接物料', 'CLC', 45, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7C8634', 'PLATE', 'PC', '直接物料', 'CLC', 0.117, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D0035', 'PLATE R03-20-G01', 'PC', '直接物料', 'CLC', 0.131, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D0215', 'CONNECTOR-PIPE', 'PC', '直接物料', 'CLC', 44, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D0978', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.312, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D1553', 'CLIP', 'PC', '直接物料', 'CLC', 0.068, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D1649', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.026, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D4903', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.122, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D6567', 'COVER', 'PC', '直接物料', 'CLC', 1.844, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D6922', 'LOCKNUT', 'PC', '直接物料', 'CLC', 1, 'G', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D6936', 'VALVE AS-CHECK', 'PC', '直接物料', 'CLC', 0.145, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D7233', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.059, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D7496', 'PIN AS', 'PC', '直接物料', 'CLC', 0.031, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8185', 'DISC', 'PC', '直接物料', 'CLC', 0.272, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8225', 'SEAL-RING', 'PC', '直接物料', 'CLC', 12, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8226', 'SEAL-RING', 'PC', '直接物料', 'CLC', 9.8, 'G', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8347', 'WASHER', 'PC', '直接物料', 'CLC', 0.119, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8436', 'SEAL-D-RING', 'PC', '直接物料', 'CLC', 11, 'G', '190', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8437', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 1.797, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8439', 'SHIM', 'PC', '直接物料', 'CLC', 3.7, 'G', '1672', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8441', 'SHIM', 'PC', '直接物料', 'CLC', 2.7, 'G', '1824', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8636', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 0.839, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8637', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.425, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8643', 'RETAINER', 'PC', '直接物料', 'CLC', 0.321, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8875', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 49, 'G', '140', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8876', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 12, 'G', '135', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8877', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 16, 'G', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8878', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 68, 'G', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8881', 'SHIM', 'PC', '直接物料', 'CLC', 5, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8882', 'SHIM', 'PC', '直接物料', 'CLC', 9, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8883', 'SEAL', 'PC', '直接物料', 'CLC', 9, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8884', 'SEAL', 'PC', '直接物料', 'CLC', 9, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D8889', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.257, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7D9267', 'YOKE', 'PC', '直接物料', 'CLC', 1.151, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7F0192', 'BOLT', 'PC', '直接物料', 'CLC', 32, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7F2050', 'LOCKNUT-BULKHEAD', 'PC', '直接物料', 'CLC', 0.017, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7F9311', 'FITTING', 'PC', '直接物料', 'CLC', 32, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7G5984', 'CLIP', 'PC', '直接物料', 'CLC', 0.315, 'KG', '38', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7G5985', 'CLIP', 'PC', '直接物料', 'CLC', 0.38, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7G5986', 'GROMMET', 'PC', '直接物料', 'CLC', 0.272, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7G7053', 'GROMMET', 'PC', '直接物料', 'CLC', 0.009, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7G8839', 'SPACER', 'PC', '直接物料', 'CLC', 0.11, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7G9724', 'SPACER', 'PC', '直接物料', 'CLC', 14, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7H2444', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 7, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7H3171', 'PLUG-NPTF', 'PC', '直接物料', 'CLC', 0.008, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7I4696', 'RETAINER', 'PC', '直接物料', 'CLC', 0.053, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7I4698', 'RING', 'PC', '直接物料', 'CLC', 0.029, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7I4699', 'INSULATOR', 'PC', '直接物料', 'CLC', 0.004, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7I4959', 'PLATE, ENCLOSURE GP', 'PC', '直接物料', 'CLC', 0.427, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7I4979', 'HINGE AS', 'PC', '直接物料', 'CLC', 0.235, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7I4981', 'HINGE AS', 'PC', '直接物料', 'CLC', 0.234, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7J2604', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.757, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7J5925', 'COTTER', 'PC', '直接物料', 'CLC', 0.003, 'KG', '1250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7J6515', 'HOSE', 'PC', '直接物料', 'CLC', 0.181, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7J8611', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.057, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7J9108', 'SEAL-O-RING-ORFS', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K1181', 'STRAP-CABLE', 'PC', '直接物料', 'CLC', 0.005, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K3176', 'COUPLING', 'PC', '直接物料', 'CLC', 0.072, 'KG', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K6117', 'WASHER', 'PC', '直接物料', 'CLC', 0.267, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9202', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 13, 'G', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9203', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 13, 'G', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9204', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.025, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9205', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 21, 'G', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9206', 'SEAL - PIN', 'PC', '直接物料', 'CLC', 0.018, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9208', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 23, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9209', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.033, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9210', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.041, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9211', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 38, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9212', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 43.2, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9216', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 50.4, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9218', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 62, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7K9220', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 65, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7L6326', 'CLIP', 'PC', '直接物料', 'CLC', 0.052, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7M0706', 'KNOB-GEARSHIFT', 'PC', '直接物料', 'CLC', 0.065, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7M3361', 'GROMMET', 'PC', '直接物料', 'CLC', 23, 'G', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7M7410', 'PLUG-PIPE', 'PC', '直接物料', 'CLC', 0.016, 'KG', '425', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7M8485', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7N0718', 'SWITCH AS-DISC', 'PC', '直接物料', 'CLC', 0.453, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7N2059', 'CLAMP AS-CYL', 'PC', '直接物料', 'CLC', 0.012, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7N3718', 'CLIP', 'PC', '直接物料', 'CLC', 0.02, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7S1912', 'CLIP', 'PC', '直接物料', 'CLC', 0.054, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7S3916', 'CLIP', 'PC', '直接物料', 'CLC', 0.029, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7S3919', 'CLIP', 'PC', '直接物料', 'CLC', 0.037, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7S4571', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 51, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7S8920', 'CLIP', 'PC', '直接物料', 'CLC', 0.07, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7S8921', 'CLIP', 'PC', '直接物料', 'CLC', 0.057, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7T8891', 'PUMP AS-WASHER', 'PC', '直接物料', 'CLC', 0.082, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7T9745', 'MANIFOLD-VALVE', 'PC', '直接物料', 'CLC', 1.005, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7V0446', 'CLIP', 'PC', '直接物料', 'CLC', 6, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7V3715', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.29, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7V5628', 'PLATE-TOP', 'PC', '直接物料', 'CLC', 0.031, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7V6571', 'GROMMET', 'PC', '直接物料', 'CLC', 0.016, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7V9791', 'PIN', 'PC', '直接物料', 'CLC', 55, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7W3872', 'SLEEVE', 'PC', '直接物料', 'CLC', 0.2, 'G', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0288', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.035, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0289', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.037, 'KG', '275', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0325', 'BOLT', 'PC', '直接物料', 'CLC', 0.073, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0328', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.116, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0331', 'BOLT', 'PC', '直接物料', 'CLC', 0.121, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0333', 'BOLT', 'PC', '直接物料', 'CLC', 0.136, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0334', 'BOLT', 'PC', '直接物料', 'CLC', 0.14, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0340', 'BOLT', 'PC', '直接物料', 'CLC', 0.174, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0342', 'BOLT', 'PC', '直接物料', 'CLC', 0.067, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0346', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.109, 'KG', '110', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0350', 'BOLT', 'PC', '直接物料', 'CLC', 0.166, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0354', 'BOLT', 'PC', '直接物料', 'CLC', 0.206, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0375', 'BOLT', 'PC', '直接物料', 'CLC', 0.345, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0390', 'BOLT', 'PC', '直接物料', 'CLC', 0.467, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0443', 'BOLT', 'PC', '直接物料', 'CLC', 0.672, 'KG', '17', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0448', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.038, 'KG', '320', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0452', 'NUT-FULL', 'PC', '直接物料', 'CLC', 0.414, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0474', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.146, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0481', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.211, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0515', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.029, 'KG', '425', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0531', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 59, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0549', 'WASHER', 'PC', '直接物料', 'CLC', 85, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0550', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.026, 'KG', '225', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0578', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.012, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0579', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.007, 'KG', '1200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0584', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '3000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0590', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.066, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0593', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.069, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0599', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0605', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0608', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0613', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.018, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0618', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.044, 'KG', '225', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0619', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.008, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0632', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.043, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0818', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X0851', 'NUT', 'PC', '直接物料', 'CLC', 0.108, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X1387', 'WASHER-SOFT', 'PC', '直接物料', 'CLC', 4, 'G', '1125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X1443', 'PROTECTOR', 'PC', '直接物料', 'CLC', 0.5, 'G', '2600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2454', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.449, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2465', 'BOLT', 'PC', '直接物料', 'CLC', 0.708, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2475', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.223, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2489', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.468, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2533', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.01, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2534', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.01, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2535', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.013, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2536', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.012, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2537', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2538', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.045, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2539', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.049, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2543', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.078, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2544', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.097, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2545', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.103, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2546', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.122, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2547', 'BOLT-HEXHEAD', 'PC', '直接物料', 'CLC', 0.134, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2548', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.027, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2549', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.102, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2550', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.114, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2552', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.087, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2553', 'BOLT', 'PC', '直接物料', 'CLC', 0.102, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2554', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.144, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2555', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.156, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2556', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.184, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2557', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.236, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2558', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.249, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2560', 'BOLT', 'PC', '直接物料', 'CLC', 0.343, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2561', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.163, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2563', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.225, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2564', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.28, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2565', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.301, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2572', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.223, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2573', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.238, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2576', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.332, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2577', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.422, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2586', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 1.172, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2620', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 10, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X2621', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.019, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X3165', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.181, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X3229', 'FILM-LIFT/TIE', 'PC', '直接物料', 'CLC', 0.002, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X3319', 'SCREW-HEX SOCKET', 'PC', '直接物料', 'CLC', 0.014, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X3383', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.037, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X3391', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.031, 'KG', '375', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X3392', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '1600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X4736', 'GROMMET', 'PC', '直接物料', 'CLC', 0.031, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X4743', 'GROMMET', 'PC', '直接物料', 'CLC', 0.017, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X4780', 'GROMMET', 'PC', '直接物料', 'CLC', 9.1, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X6312', 'CORD AS-HEATER', 'PC', '直接物料', 'CLC', 0.425, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X7644', 'FILM-TIE DOWN', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X7729', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.009, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X7731', 'PLUG-NPTF', 'PC', '直接物料', 'CLC', 46, 'G', '280', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X7742', 'WASHER - PULLEY', 'PC', '直接物料', 'CLC', 0.305, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X7900', 'BOLT', 'PC', '直接物料', 'CLC', 0.551, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X7920', 'BOLT', 'PC', '直接物料', 'CLC', 5, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7X7958', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.048, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7Y0589', 'BOLT', 'PC', '直接物料', 'CLC', 79, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7Y3731/HE', 'FLANGE-SPECIAL', 'PC', '直接物料', 'CLC', 0.537, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7Y4538/HE', 'CLAMP-HALF', 'PC', '直接物料', 'CLC', 0.321, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7Y5262/HE', 'BOLT-U', 'PC', '直接物料', 'CLC', 0.095, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7Y5456/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.072, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7Y8171/HE', 'GROMMET', 'PC', '直接物料', 'CLC', 0.07, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('7Y8710/HE', 'ROD', 'PC', '直接物料', 'CLC', 0.036, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8B1002', 'NUT-SLOTTED', 'PC', '直接物料', 'CLC', 0.109, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8B1615', 'GASKET', 'PC', '直接物料', 'CLC', 20, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8B4884', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.027, 'KG', '336', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8B6127', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 20, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8B6511', 'CUP ROLLER BRG', 'PC', '直接物料', 'CLC', 1.63, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C0620', 'PROTECTOR-THREAD', 'PC', '直接物料', 'CLC', 0.46, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C0623', 'STUD-TAPERLOCK', 'PC', '直接物料', 'CLC', 0.108, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3076', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.45, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3089', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.003, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3205', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.094, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3206', 'FLANGE-SPLIT', 'PC', '直接物料', 'CLC', 0.109, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3425', 'BOLT', 'PC', '直接物料', 'CLC', 57, 'G', '180', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3442', 'SPRING-COIL', 'PC', '直接物料', 'CLC', 0.013, 'KG', '144', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3445', 'CAP-DUST', 'PC', '直接物料', 'CLC', 0.011, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3446', 'VALVE-SAMPLING', 'PC', '直接物料', 'CLC', 0.045, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3447', 'CAP-DUST', 'PC', '直接物料', 'CLC', 0.014, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C3451', 'CAP-DUST', 'PC', '直接物料', 'CLC', 0.009, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C5607', 'MOUNT', 'PC', '直接物料', 'CLC', 0.004, 'KG', '320', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C5608', 'SPACER', 'PC', '直接物料', 'CLC', 0.007, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C5723', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.275, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C5897', 'FILM-IDENT', 'PC', '直接物料', 'CLC', 0.44, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C6854', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 73, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C6857', 'BOLT', 'PC', '直接物料', 'CLC', 0.21, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C6872', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.071, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C7576', 'ADAPTER-NIPPLE', 'PC', '直接物料', 'CLC', 0.042, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C8408', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.049, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C8451', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.011, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8C9987', 'WASHER', 'PC', '直接物料', 'CLC', 9, 'G', '175', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D1470', 'GROMMET', 'PC', '直接物料', 'CLC', 0.036, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D1817', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 0.752, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D1819', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 1.559, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D2256', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 2.131, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D2311', 'SEAL', 'PC', '直接物料', 'CLC', 0.234, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D2429', 'PIN AS', 'PC', '直接物料', 'CLC', 0.417, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D2638', 'SPACER', 'PC', '直接物料', 'CLC', 20, 'G', '335', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D2811', 'WASHER', 'PC', '直接物料', 'CLC', 1.9, 'G', '280', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3244', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.053, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3245', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.28, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3247', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.041, 'KG', '22', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3251', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.137, 'KG', '78', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3252', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.086, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3266', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.023, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3267', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.121, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3268', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.026, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3269', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.109, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3307', 'SEAL', 'PC', '直接物料', 'CLC', 0.014, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3308', 'SEAL', 'PC', '直接物料', 'CLC', 13, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3309', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.489, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3311', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.371, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3540', 'NUT', 'PC', '直接物料', 'CLC', 0.525, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3615', 'RETAINER', 'PC', '直接物料', 'CLC', 0.57, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3786', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 0.078, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3791', 'PIN-LYNCH', 'PC', '直接物料', 'CLC', 0.034, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3885', 'WASHER', 'PC', '直接物料', 'CLC', 0.341, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3886', 'RING-RETAINING', 'PC', '直接物料', 'CLC', 43, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3902', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 0.129, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3984', 'CONE', 'PC', '直接物料', 'CLC', 1.96, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D3986', 'CUP', 'PC', '直接物料', 'CLC', 0.921, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4064', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.387, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4114', 'CAP AS', 'PC', '直接物料', 'CLC', 3.474, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4203', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 99, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4204', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 17, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4207', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 40, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4208', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 92, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4217', 'SEAL', 'PC', '直接物料', 'CLC', 12, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4235', 'PIN', 'PC', '直接物料', 'CLC', 4.495, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4282', 'DISC', 'PC', '直接物料', 'CLC', 1.411, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4316', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 30, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4317', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.106, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4321', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 66, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4336', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.18, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4337', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 40, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D4771', 'SEAL O RING', 'PC', '直接物料', 'CLC', 0.044, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D5054', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.011, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D5467', 'WASHER-NOTCHED', 'PC', '直接物料', 'CLC', 0.484, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7026', 'GUARD-BRAKE TUBE', 'PC', '直接物料', 'CLC', 1.331, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7086', 'BEARING', 'PC', '直接物料', 'CLC', 57, 'G', '56', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7333', 'COLLAR', 'PC', '直接物料', 'CLC', 1.5, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7343', 'WASHER', 'PC', '直接物料', 'CLC', 0.12, 'KG', '99', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7425', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.14, 'KG', '34', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7426', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.506, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7685', 'BEARING', 'PC', '直接物料', 'CLC', 82, 'G', '23', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7712', 'SCREW-BUTTON HD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7960', 'PLATE', 'PC', '直接物料', 'CLC', 9, 'G', '211', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D7996', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 58, 'G', '56', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D8168', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.169, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D8572', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.362, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D8621', 'RING-RETAINING', 'PC', '直接物料', 'CLC', 36, 'G', '82', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D8628', 'WASHER', 'PC', '直接物料', 'CLC', 0.229, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D8791', 'SHIM', 'PC', '直接物料', 'CLC', 5, 'G', '1200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D8792', 'SHIM', 'PC', '直接物料', 'CLC', 2.545, 'G', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D8888', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.092, 'KG', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9092', 'PIN', 'PC', '直接物料', 'CLC', 0.435, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9159', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.226, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9296', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 51, 'G', '36', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9507', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.12, 'KG', '21', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9652', 'BEARING', 'PC', '直接物料', 'CLC', 84, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9671', 'CLIP', 'PC', '直接物料', 'CLC', 0.025, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9718', 'DISC', 'PC', '直接物料', 'CLC', 0.188, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9738', 'SEAL-RING', 'PC', '直接物料', 'CLC', 10, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9739', 'RING-SEAL', 'PC', '直接物料', 'CLC', 0.023, 'KG', '124', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9756', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.289, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8D9784', 'LOCK', 'PC', '直接物料', 'CLC', 71, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8E4832', 'STRIKER', 'PC', '直接物料', 'CLC', 95, 'G', '27', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8E6208', 'PIN-G.E.T.', 'PC', '直接物料', 'CLC', 40, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8E6209', 'RETAINER AS', 'PC', '直接物料', 'CLC', 9, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8E7926', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 4.5, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8E8293', 'GROMMET', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8F4102', 'PLATE-SEAL', 'PC', '直接物料', 'CLC', 75, 'G', '170', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8F6437', 'WASHER-SOFT', 'PC', '直接物料', 'CLC', 0.07, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8F7242', 'WASHER', 'PC', '直接物料', 'CLC', 0.002, 'KG', '2500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8F8513', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 30, 'G', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8F8733', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.006, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8F9516', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.005, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8F9538', 'SEAL ORING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8H0350', 'RING-RETAINING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8J2190', 'PIN', 'PC', '直接物料', 'CLC', 2.82, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8J5778', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.44, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8J6875', 'VALVE AS.-SHUTTLE', 'PC', '直接物料', 'CLC', 0.375, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8J9607', 'PIN,RIPPER GP -A', 'PC', '直接物料', 'CLC', 6.06, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8J9608', 'PIN,RIPPER GP -A', 'PC', '直接物料', 'CLC', 4.334, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8K0530', 'PIN', 'PC', '直接物料', 'CLC', 0.511, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8K1433', 'GROMMET', 'PC', '直接物料', 'CLC', 0.005, 'KG', '330', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8K4691', 'CLIP-HALF', 'PC', '直接物料', 'CLC', 0.227, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8L5008', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.03, 'KG', '270', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8L6005', 'ADAPTER-TEE', 'PC', '直接物料', 'CLC', 0.165, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8L7905', 'RIVET-POP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8L8413', 'STRAP-CABLE', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8M0547', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.102, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8M2769', 'CLIP', 'PC', '直接物料', 'CLC', 0.045, 'KG', '29', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8M2770', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.019, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8M2773', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.028, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8M4438', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.004, 'KG', '1100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8M7758', 'RIVET-POP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '3680', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8R0721', 'SPACER', 'PC', '直接物料', 'CLC', 0.029, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8R3688', 'SPRING', 'PC', '直接物料', 'CLC', 14, 'G', '153', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8R8847', 'RETAINER-SPRING', 'PC', '直接物料', 'CLC', 0.8, 'G', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8R9186', 'ANGLE', 'PC', '直接物料', 'CLC', 0.055, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S0023', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.044, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S0024', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.036, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S0948', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.046, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S2634', 'COVER AS-CONN', 'PC', '直接物料', 'CLC', 0.06, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S5383', 'BLOCK', 'PC', '直接物料', 'CLC', 0.157, 'KG', '65', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S6109', 'CLIP', 'PC', '直接物料', 'CLC', 0.06, 'KG', '104', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S6110', 'CLIP', 'PC', '直接物料', 'CLC', 0.062, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S7048', 'HOSE AS', 'PC', '直接物料', 'CLC', 36.288, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S7583', 'GROMMET', 'PC', '直接物料', 'CLC', 0.014, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S9075', 'CONE BEARING', 'PC', '直接物料', 'CLC', 1.912, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S9076', 'CUP BEARING', 'PC', '直接物料', 'CLC', 0.819, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8S9092', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.136, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0081', 'VALVE-BALL', 'PC', '直接物料', 'CLC', 0.33, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0082', 'TEE - UNION SPL', 'PC', '直接物料', 'CLC', 0.165, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0088', 'BOLT', 'PC', '直接物料', 'CLC', 0.108, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0106', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.105, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0119', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.263, 'KG', '44', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0267', 'BOLT-SOCKET HEAD', 'PC', '直接物料', 'CLC', 0.005, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0273', 'BOLT-SOCKET HEAD', 'PC', '直接物料', 'CLC', 0.046, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0292', 'BOLT', 'PC', '直接物料', 'CLC', 0.037, 'KG', '160', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0328', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '5000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0336', 'FITTING-RELIEF', 'PC', '直接物料', 'CLC', 5, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0355', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.068, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0356', 'BOLT', 'PC', '直接物料', 'CLC', 0.102, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0359', 'BOLT', 'PC', '直接物料', 'CLC', 0.21, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0389', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.011, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0558', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 61, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0643', 'BOLT', 'PC', '直接物料', 'CLC', 0.053, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0655', 'BOLT', 'PC', '直接物料', 'CLC', 0.269, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0666', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.441, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0667', 'BOLT', 'PC', '直接物料', 'CLC', 0.423, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0674', 'BOLT', 'PC', '直接物料', 'CLC', 0.662, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T0722', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.029, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1117', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 26, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1159', 'BOLT-SOCKET HD', 'PC', '直接物料', 'CLC', 0.025, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1174', 'SEAL-LIP TYPE', 'PC', '直接物料', 'CLC', 2, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1482', 'WASHER', 'PC', '直接物料', 'CLC', 80, 'G', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1757', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.033, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1887', 'CLIP', 'PC', '直接物料', 'CLC', 0.034, 'KG', '175', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1888', 'CLIP', 'PC', '直接物料', 'CLC', 0.031, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1889', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.035, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1890', 'CLIP-2 PIECE', 'PC', '直接物料', 'CLC', 0.028, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1891', 'CLIP', 'PC', '直接物料', 'CLC', 0.039, 'KG', '165', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1892', 'CLIP', 'PC', '直接物料', 'CLC', 0.032, 'KG', '285', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1895', 'CLIP', 'PC', '直接物料', 'CLC', 0.038, 'KG', '144', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1896', 'CLIP', 'PC', '直接物料', 'CLC', 0.026, 'KG', '240', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1897', 'CLIP', 'PC', '直接物料', 'CLC', 0.044, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1898', 'CLIP', 'PC', '直接物料', 'CLC', 0.035, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1899', 'CLIP', 'PC', '直接物料', 'CLC', 0.051, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T1900', 'CLIP', 'PC', '直接物料', 'CLC', 0.04, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2192', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 8, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2444', 'STUD-BALL', 'PC', '直接物料', 'CLC', 0.013, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2501', 'BOLT', 'PC', '直接物料', 'CLC', 0.033, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2502', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.022, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2525', 'GROMMET', 'PC', '直接物料', 'CLC', 0.078, 'KG', '16', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2561', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '650', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2659', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2901', 'NOZZLE AS-WASHER', 'PC', '直接物料', 'CLC', 60, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2910', 'NUT-WING', 'PC', '直接物料', 'CLC', 9.072, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T2920', 'GROMMET', 'PC', '直接物料', 'CLC', 0.019, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T3016', 'WASHER', 'PC', '直接物料', 'CLC', 1, 'G', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T3282', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.016, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T3440', 'GROMMET', 'PC', '直接物料', 'CLC', 0.24, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T3647', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.031, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T3844', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.018, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T3980', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.039, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4001', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.134, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4121', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.005, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4122', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.015, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4123', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.016, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4131', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.075, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4132', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.039, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4133', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.011, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4136', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.023, 'KG', '550', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4137', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.023, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4138', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.007, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4139', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.037, 'KG', '280', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4140', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.116, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4141', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.249, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4167', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.031, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4171', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.005, 'KG', '2200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4172', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.056, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4173', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.196, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4174', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.208, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4175', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.169, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4176', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.088, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4177', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.042, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4178', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.062, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4179', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.029, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4182', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.035, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4183', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.042, 'KG', '200', '套袋子', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4184', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.047, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4185', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.042, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4186', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.035, 'KG', '300', '套袋子', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4187', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.241, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4189', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.014, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4190', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.079, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4191', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.021, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4192', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.039, 'KG', '250', '套袋子', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4193', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.118, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4194', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.061, 'KG', '220', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4195', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.025, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4196', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.028, 'KG', '425', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4198', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.073, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4199', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.009, 'KG', '340', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4200', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.105, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4201', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4205', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '2200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4222', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.014, 'KG', '800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4223', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.008, 'KG', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4224', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '1850', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4226', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.035, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4244', 'NUT-HEX', 'PC', '直接物料', 'CLC', 0.016, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4647', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.003, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4648', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.078, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4778', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.036, 'KG', '375', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4779', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.082, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4780', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.133, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4821', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.026, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4835', 'BOLT', 'PC', '直接物料', 'CLC', 0.065, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4895', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.071, 'KG', '170', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4896', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '2500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4908', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.013, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4910', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.07, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4956', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.047, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4970', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4971', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.009, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4983', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.051, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4984', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.102, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4986', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.08, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T4994', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '475', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5001', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.122, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5005', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.049, 'KG', '235', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5030', 'BOLT', 'PC', '直接物料', 'CLC', 0.079, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5035', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.042, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5041', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.102, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5049', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 2, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5091', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.012, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5092', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.149, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5093', 'BOLT HEX HEAD', 'PC', '直接物料', 'CLC', 0.014, 'KG', '350', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5361', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.05, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5379', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.269, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5412', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.13, 'KG', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5436', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.091, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5439', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.057, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5460', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.154, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T5878', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.416, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6380', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.559, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6381', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.345, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6383', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.313, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6385', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.296, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6408', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.11, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6430', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.2, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6431', 'ROD END - SPHERICAL', 'PC', '直接物料', 'CLC', 71, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6466', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.042, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6685', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.079, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6703', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.097, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6757', 'PLUG-NPTF', 'PC', '直接物料', 'CLC', 0.003, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6868', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.084, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6869', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.029, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6870', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.028, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6871', 'BOLT', 'PC', '直接物料', 'CLC', 0.125, 'KG', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6912', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.025, 'KG', '450', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8t6973', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.039, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T6974', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7008', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.048, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7087', 'GROMMET', 'PC', '直接物料', 'CLC', 0.098, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7088', 'GROMMET', 'PC', '直接物料', 'CLC', 0.51, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7338', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.11, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7490', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 0.083, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7524', 'SEAL-O-RING-STOR', 'PC', '直接物料', 'CLC', 0.001, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7529', 'CLIP', 'PC', '直接物料', 'CLC', 0.043, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7547', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.018, 'KG', '800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7860', 'CONNECTOR', 'PC', '直接物料', 'CLC', 0.047, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7862', 'CONNECTOR', 'PC', '直接物料', 'CLC', 0.114, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7863', 'ADAPTER-STR', 'PC', '直接物料', 'CLC', 65, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7909', 'ADAPTER', 'PC', '直接物料', 'CLC', 54, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7934', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.01, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T7971', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.014, 'KG', '700', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8549', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.02, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8555', 'SETSCREW', 'PC', '直接物料', 'CLC', 0.25, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8737', 'PLUG-SEAL', 'PC', '直接物料', 'CLC', 0.001, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8799', 'BOOT', 'PC', '直接物料', 'CLC', 5.5, 'G', '145', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8883', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 54, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8908', 'BOLT', 'PC', '直接物料', 'CLC', 0.008, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8915', 'BOLT', 'PC', '直接物料', 'CLC', 0.051, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8916', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.046, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8917', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.048, 'KG', '290', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8919', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.058, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T8924', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.221, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9006', 'BOLT-SOCKET HEAD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9043', 'BOLT', 'PC', '直接物料', 'CLC', 0.013, 'KG', '475', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9056', 'BOLT', 'PC', '直接物料', 'CLC', 23, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9364', 'BOLT', 'PC', '直接物料', 'CLC', 0.007, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9378', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.072, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9389', 'BOLT', 'PC', '直接物料', 'CLC', 0.082, 'KG', '125', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9391', 'BOLT', 'PC', '直接物料', 'CLC', 0.108, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9530', 'FASTENER-TACK', 'PC', '直接物料', 'CLC', 0.44, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8T9655', 'MOUNT', 'PC', '直接物料', 'CLC', 0.004, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8U4791', 'WASHER', 'PC', '直接物料', 'CLC', 0.015, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8V3273', 'SHIM PACK', 'PC', '直接物料', 'CLC', 0.354, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8V7162', 'CABLE', 'PC', '直接物料', 'CLC', 0.012, 'KG', '133', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8V9708', 'SPACER-HARD', 'PC', '直接物料', 'CLC', 0.094, 'KG', '55', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W0456', 'SHAFT', 'PC', '直接物料', 'CLC', 50, 'G', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W0789', 'RETAINER', 'PC', '直接物料', 'CLC', 0.642, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W0934', 'BRACKET', 'PC', '直接物料', 'CLC', 23, 'G', '48', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W0935', 'GASKET', 'PC', '直接物料', 'CLC', 4.536, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W1749', 'PLATE', 'PC', '直接物料', 'CLC', 0.197, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W2307', 'SHAFT-PLANET', 'PC', '直接物料', 'CLC', 1.067, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W2308', 'SHAFT-PLANET', 'PC', '直接物料', 'CLC', 1.175, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W3214', 'CAP-RECEIVER', 'PC', '直接物料', 'CLC', 0.023, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W3991', 'BLOCK-JUNCTION', 'PC', '直接物料', 'CLC', 0.977, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W4141', 'LOCK', 'PC', '直接物料', 'CLC', 45, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W4167', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.865, 'KG', '3', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W4981', 'LOCK', 'PC', '直接物料', 'CLC', 81, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W5111', 'SLEEVE', 'PC', '直接物料', 'CLC', 65, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W5279', 'RETAINER', 'PC', '直接物料', 'CLC', 0.76, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W5293', 'PIN', 'PC', '直接物料', 'CLC', 2.01, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W5578', 'PISTON', 'PC', '直接物料', 'CLC', 0.582, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W5586', 'SPIDER', 'PC', '直接物料', 'CLC', 1.689, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W6179', 'WASHER', 'PC', '直接物料', 'CLC', 0.194, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W6476', 'PIN', 'PC', '直接物料', 'CLC', 1.178, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W6497', 'PIN', 'PC', '直接物料', 'CLC', 1.823, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W7915', 'SHIM', 'PC', '直接物料', 'CLC', 34, 'G', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W8496', 'PLATE', 'PC', '直接物料', 'CLC', 0.461, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W8527', 'SLEEVE', 'PC', '直接物料', 'CLC', 13, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W8528', 'SLEEVE', 'PC', '直接物料', 'CLC', 12, 'G', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W8903', 'CLIP', 'PC', '直接物料', 'CLC', 69, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8W8909', 'SLEEVE', 'PC', '直接物料', 'CLC', 11, 'G', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X0674', 'WASHER', 'PC', '直接物料', 'CLC', 0.515, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X1853', 'SPACER', 'PC', '直接物料', 'CLC', 28, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X1904', 'SPACER', 'PC', '直接物料', 'CLC', 0.13, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X1907', 'SHAFT', 'PC', '直接物料', 'CLC', 0.501, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X1913', 'SPACER', 'PC', '直接物料', 'CLC', 0.035, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X1914', 'SHAFT', 'PC', '直接物料', 'CLC', 0.222, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X2160', 'LEVER', 'PC', '直接物料', 'CLC', 0.46, 'KG', '18', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X2680', 'RACKET AS', 'PC', '直接物料', 'CLC', 1.509, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X2881', 'LOCK', 'PC', '直接物料', 'CLC', 59, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X3261', 'LEVER', 'PC', '直接物料', 'CLC', 0.246, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X3364', 'SHIM-PACK', 'PC', '直接物料', 'CLC', 0.149, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X3965', 'RATCHET', 'PC', '直接物料', 'CLC', 0.137, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X4641', 'SPACER-THRUST', 'PC', '直接物料', 'CLC', 0.413, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X4869', 'SPACER', 'PC', '直接物料', 'CLC', 0.318, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X4879', 'BRACKET AS', 'PC', '直接物料', 'CLC', 24.6, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5021', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.112, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5027', 'ELBOW', 'PC', '直接物料', 'CLC', 1.095, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5102', 'SEAL', 'PC', '直接物料', 'CLC', 3, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5108', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.133, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5121', 'TUBE', 'PC', '直接物料', 'CLC', 0.441, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5123', 'RETAINER', 'PC', '直接物料', 'CLC', 0.222, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5160', 'GROMMET', 'PC', '直接物料', 'CLC', 17, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5489', 'SLEEVE', 'PC', '直接物料', 'CLC', 0.008, 'KG', '130', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X5492', 'TUBE', 'PC', '直接物料', 'CLC', 30, 'G', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X6296', 'LEVER', 'PC', '直接物料', 'CLC', 0.033, 'KG', '22', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X6492', 'PLATE', 'PC', '直接物料', 'CLC', 0.27, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X8376', 'WASHER', 'PC', '直接物料', 'CLC', 14, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X8377', 'WASHER', 'PC', '直接物料', 'CLC', 16, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X8378', 'WASHER', 'PC', '直接物料', 'CLC', 6, 'G', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8X8916', 'PLATE', 'PC', '直接物料', 'CLC', 57, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8Y7386', 'SPACER', 'PC', '直接物料', 'CLC', 0.014, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('8Y8606', 'GROMMET', 'PC', '直接物料', 'CLC', 0.04, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9B0143', 'LOCK-NUT', 'PC', '直接物料', 'CLC', 29, 'G', '85', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9B4179', 'HOSE', 'PC', '直接物料', 'CLC', 0.255, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9B7233', 'LOCKWASHER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9B7237', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.026, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9C5344', 'SPACER', 'PC', '直接物料', 'CLC', 0.044, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9C9467', 'CLIP', 'PC', '直接物料', 'CLC', 0.139, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D0178', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.13, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D0498', 'BUSHING', 'PC', '直接物料', 'CLC', 2.087, 'KG', '4', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D0953', 'SPACER', 'PC', '直接物料', 'CLC', 34, 'G', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D1491', 'COUPLING', 'PC', '直接物料', 'CLC', 0.739, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D1589', 'MOUNTING', 'PC', '直接物料', 'CLC', 0.129, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D2753', 'LOCK', 'PC', '直接物料', 'CLC', 0.379, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D3075', 'RETAINER', 'PC', '直接物料', 'CLC', 0.809, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D3241', 'CUP-ROLLER BRG', 'PC', '直接物料', 'CLC', 0.429, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D3242', 'BEARING-CONE', 'PC', '直接物料', 'CLC', 0.991, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D3311', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 0.712, 'KG', '12', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D3313', 'BEARING-SLEEVE', 'PC', '直接物料', 'CLC', 1.243, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D3333', 'RING-RETAINING', 'PC', '直接物料', 'CLC', 0.034, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D3768', 'GROMMET', 'PC', '直接物料', 'CLC', 0.005, 'KG', '120', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D3769', 'GROMMET', 'PC', '直接物料', 'CLC', 0.004, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D5941', 'WASHER-THRUST', 'PC', '直接物料', 'CLC', 0.122, 'KG', '73', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6196', 'CLIP', 'PC', '直接物料', 'CLC', 0.25, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6197', 'CLIP', 'PC', '直接物料', 'CLC', 0.134, 'KG', '60', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6584', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 16, 'G', '90', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6585', 'SEAL', 'PC', '直接物料', 'CLC', 22.68, 'G', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6586', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.033, 'KG', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6588', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.033, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6589', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 32, 'G', '45', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6591', 'SEAL-PIN', 'PC', '直接物料', 'CLC', 0.039, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D6663', 'VALVE', 'PC', '直接物料', 'CLC', 0.139, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D7047', 'SHIM', 'PC', '直接物料', 'CLC', 11, 'G', '1000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D7085', 'SHIM', 'PC', '直接物料', 'CLC', 12, 'G', '178', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D7924', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 0.069, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9D9797', 'LOCK', 'PC', '直接物料', 'CLC', 68, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9F1399', 'SEAL-O RING', 'PC', '直接物料', 'CLC', 0.007, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9F2247', 'PLUG-INTL HEX', 'PC', '直接物料', 'CLC', 0.004, 'KG', '900', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9F5644', 'LOCK WASHER', 'PC', '直接物料', 'CLC', 0.001, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9G2758', 'LOCKOUT-SWITCH', 'PC', '直接物料', 'CLC', 0.131, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9G2991', 'RING-SEAL', 'PC', '直接物料', 'CLC', 5, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9G5127', 'BREATHER AS', 'PC', '直接物料', 'CLC', 0.05, 'KG', '75', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9G5211', 'SPACER', 'PC', '直接物料', 'CLC', 11, 'G', '80', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9G7101', 'SPACER', 'PC', '直接物料', 'CLC', 0.051, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9G7516', 'PLUG', 'PC', '直接物料', 'CLC', 8, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9G8909', 'COVER-TERMINAL', 'PC', '直接物料', 'CLC', 0.03, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9H3360', 'SEAL O RING', 'PC', '直接物料', 'CLC', 0.054, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9J3866', 'ADAPTER', 'PC', '直接物料', 'CLC', 0.666, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9J5498', 'SPRING', 'PC', '直接物料', 'CLC', 0.023, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9K1171', 'BEARING-CUP', 'PC', '直接物料', 'CLC', 1.12, 'KG', '9', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9K1172', 'CONE RLR BEARING', 'PC', '直接物料', 'CLC', 2.359, 'KG', '2', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9L1566', 'SUPPORT-TUBE', 'PC', '直接物料', 'CLC', 0.045, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9L1775', 'BRACKET', 'PC', '直接物料', 'CLC', 0.02, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9L3334', 'NUT-PLATED', 'PC', '直接物料', 'CLC', 5, 'G', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9L3560', 'ELBOW', 'PC', '直接物料', 'CLC', 0.14, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9L6331', 'BRACKET', 'PC', '直接物料', 'CLC', 30, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M0164', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.035, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M1853', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 0.055, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M2092', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M2904', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.021, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M4594', 'SPACER', 'PC', '直接物料', 'CLC', 0.045, 'KG', '240', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M4972', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.047, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M4995', 'CLIP', 'PC', '直接物料', 'CLC', 0.03, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M5884', 'BUMPER', 'PC', '直接物料', 'CLC', 0.007, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M7958', 'CLAMP-HOSE', 'PC', '直接物料', 'CLC', 0.035, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9M8406', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.019, 'KG', '115', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9N1941', 'CLAMP-V-BAND', 'PC', '直接物料', 'CLC', 0.247, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9N4449', 'SPACER', 'PC', '直接物料', 'CLC', 0.11, 'KG', '70', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9N4450', 'SPACER', 'PC', '直接物料', 'CLC', 0.35, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9N5253', 'CORD AS-JWH', 'PC', '直接物料', 'CLC', 0.198, 'KG', '8', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9P2369', 'NOZZLE AS-WASHER', 'PC', '直接物料', 'CLC', 62, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9P6572', 'PLUG', 'PC', '直接物料', 'CLC', 0.009, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9P7121', 'STRAINER-FUEL TK', 'PC', '直接物料', 'CLC', 0.299, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R0109', 'WASHER', 'PC', '直接物料', 'CLC', 42, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R2053', 'BLOCK', 'PC', '直接物料', 'CLC', 0.081, 'KG', '10', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R2081', 'BRACKET AS', 'PC', '直接物料', 'CLC', 91, 'G', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R2404', 'REFLECTOR-AMBER', 'PC', '直接物料', 'CLC', 29, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R2620', 'PLUG-BUTTON', 'PC', '直接物料', 'CLC', 0.004, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R2806', 'PIN - CLEVIS', 'PC', '直接物料', 'CLC', 0.016, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R2807', 'CLIP', 'PC', '直接物料', 'CLC', 0.001, 'KG', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R5008', 'SPACER', 'PC', '直接物料', 'CLC', 0.01, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R6414', 'ROD', 'PC', '直接物料', 'CLC', 0.157, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R8291', 'SPACER', 'PC', '直接物料', 'CLC', 0.07, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R8390', 'SPACER', 'PC', '直接物料', 'CLC', 0.036, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R8780', 'CLIP', 'PC', '直接物料', 'CLC', 0.035, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R8781', 'CLIP', 'PC', '直接物料', 'CLC', 29.938, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R8870', 'BLOCK', 'PC', '直接物料', 'CLC', 72, 'G', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9R9925', 'FILTER, TANK GP-HYD', 'PC', '直接物料', 'CLC', 0.08, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S1240', 'NUT AS', 'PC', '直接物料', 'CLC', 46, 'G', '165', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S1354', 'NUT-JAM', 'PC', '直接物料', 'CLC', 0.021, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S4181', 'PLUG-LD STOR', 'PC', '直接物料', 'CLC', 0.176, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S4185', 'PLUG-EXT HEX', 'PC', '直接物料', 'CLC', 0.044, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S4190', 'PLUG-EXT HEX', 'PC', '直接物料', 'CLC', 0.068, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S7706', 'ELBOW-FLARED', 'PC', '直接物料', 'CLC', 0.116, 'KG', '35', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S7712', 'ELBOW-FLARED', 'PC', '直接物料', 'CLC', 29, 'G', '280', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S8004', 'PLUG-INTL HEX', 'PC', '直接物料', 'CLC', 0.014, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9S8892', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 0.227, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9T1013', 'VALVE GP-CHECK', 'PC', '直接物料', 'CLC', 0.061, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9U6993', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.13, 'KG', '39', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9U6996', 'ADAPTER AS-STR', 'PC', '直接物料', 'CLC', 0.44, 'KG', '14', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9U6998', 'ADAPTER AS-ELBOW', 'PC', '直接物料', 'CLC', 0.311, 'KG', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9W1442', 'FUSE', 'PC', '直接物料', 'CLC', 0.001, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9W1991', 'SPACER', 'PC', '直接物料', 'CLC', 0.044, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9W5477', 'TUBE', 'PC', '直接物料', 'CLC', 0.56, 'KG', '15', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9W9930', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 0.584, 'KG', '6', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9W9931', 'MOUNT AS-ISLN', 'PC', '直接物料', 'CLC', 0.654, 'KG', '5', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9W9952', 'WASHER-STD', 'PC', '直接物料', 'CLC', 0.337, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9W9953', 'SLEEVE', 'PC', '直接物料', 'CLC', 0.276, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X0941', 'LOCKNUT', 'PC', '直接物料', 'CLC', 0.024, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2027', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.002, 'KG', '4000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2038', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '2000', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2040', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.02, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2041', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.017, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2042', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.006, 'KG', '1800', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2043', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.004, 'KG', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2044', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.005, 'KG', '1500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2045', 'SCREW-TRUSS HEAD', 'PC', '直接物料', 'CLC', 0.007, 'KG', '1400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2125', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.023, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2201', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.075, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:21', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2306', 'WASHER', 'PC', '直接物料', 'CLC', 0.063, 'KG', '150', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2480', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.014, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2488', 'CLAMP-BAND', 'PC', '直接物料', 'CLC', 0.041, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2503', 'CLIP', 'PC', '直接物料', 'CLC', 0.068, 'KG', '42', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2538', 'ADAPTER-ELBOW', 'PC', '直接物料', 'CLC', 0.502, 'KG', '21', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2646', 'CLIP-HALF HOOK', 'PC', '直接物料', 'CLC', 0.388, 'KG', '25', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X2647', 'CLIP-HALF HOOK', 'PC', '直接物料', 'CLC', 0.221, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X3636', 'CAP-PLUG', 'PC', '直接物料', 'CLC', 0.014, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X3994', 'PLUG', 'PC', '直接物料', 'CLC', 0.005, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6016', 'SCREW-HEX SOCKET', 'PC', '直接物料', 'CLC', 0.004, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6165', 'WASHER', 'PC', '直接物料', 'CLC', 0.007, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6380', 'BOLT', 'PC', '直接物料', 'CLC', 0.09, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6400', 'CLIP-HALF', 'PC', '直接物料', 'CLC', 0.61, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6579', 'NUT-SWIVEL', 'PC', '直接物料', 'CLC', 0.118, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6580', 'NUT-SWIVEL', 'PC', '直接物料', 'CLC', 0.096, 'KG', '40', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:25', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6581', 'NUT-SWIVEL', 'PC', '直接物料', 'CLC', 0.046, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6582', 'NUT-SWIVEL', 'PC', '直接物料', 'CLC', 0.028, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X6590', 'WASHER', 'PC', '直接物料', 'CLC', 24, 'G', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7287', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.008, 'KG', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7345', 'GROMMET', 'PC', '直接物料', 'CLC', 0.007, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7371', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 10, 'G', '200', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7373', 'GROMMET', 'PC', '直接物料', 'CLC', 9, 'G', '20', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7378', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7380', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7381', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7382', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7383', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.002, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7384', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7385', 'SEAL-O-RING', 'PC', '直接物料', 'CLC', 0.001, 'KG', '500', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X7449', 'GROMMET', 'PC', '直接物料', 'CLC', 0.05, 'KG', '30', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:20', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8250', 'CLIP', 'PC', '直接物料', 'CLC', 0.045, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8256', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.001, 'KG', '3750', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8257', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.013, 'KG', '600', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8258', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.076, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:18', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8268', 'WASHER-HARD', 'PC', '直接物料', 'CLC', 0.011, 'KG', '400', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8271', 'BOLT-12 POINT HD', 'PC', '直接物料', 'CLC', 32, 'G', '300', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8582', 'CLIP-LOOP', 'PC', '直接物料', 'CLC', 0.009, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:17', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8606', 'CLIP', 'PC', '直接物料', 'CLC', 14, 'G', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8875', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.116, 'KG', '50', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X8880', 'BOLT-HEX HEAD', 'PC', '直接物料', 'CLC', 0.108, 'KG', '100', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:24', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X9365', 'BRACKET-LAMP', 'PC', '直接物料', 'CLC', 0.18, 'KG', '24', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); +INSERT INTO `tbl_app_goods` VALUES ('9X9896', 'MOUNT', 'PC', '直接物料', 'CLC', 0.003, 'KG', '250', '正常', 'FC01', NULL, '一箱一料', 'PULL', NULL, NULL, '[]', NULL, NULL, NULL, NULL, NULL, '2024-08-28 18:39:22', '管理员'); -- ---------------------------- -- Table structure for tbl_app_goods_to_station @@ -816,6 +5169,44 @@ CREATE TABLE `tbl_app_goods_to_station` ( -- ---------------------------- -- Records of tbl_app_goods_to_station -- ---------------------------- +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954528927745', 'ASRS-#1', '8T1889', 0.0000, 7.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954528927746', 'ASRS-#1', '4792172', 0.0000, 22.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954528927747', 'ASRS-#1', '5P4116', 0.0000, 5.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954528927748', 'ASRS-#1', '2006345', 0.0000, 5.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954528927749', 'ASRS-#1', '3B8489', 0.0000, 12.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954545704962', 'ASRS-#1', '3979301', 0.0000, 4.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954545704963', 'ASRS-#1', '1984777', 0.0000, 19.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954545704964', 'ASRS-#1', '8T4186', 0.0000, 10.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093570', 'ASRS-#1', '8T4183', 0.0000, 8.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093571', 'ASRS-#1', '4883971', 0.0000, 36.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093572', 'ASRS-#1', '8T4192', 0.0000, 12.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093573', 'ASRS-#1', '4792171', 0.0000, 34.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093574', 'ASRS-#1', '2048000', 0.0000, 14.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093575', 'ASRS-#1', '5621927', 0.0000, 25.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093576', 'ASRS-#1', '1305300', 0.0000, 15.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093577', 'ASRS-#1', '8T1890', 0.0000, 7.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954554093578', 'ASRS-#1', '3445675', 0.0000, 13.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954558287873', 'ASRS-#1', '8T4121', 0.0000, 38.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366954558287874', 'ASRS-#1', '0672551', 0.0000, 29.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877186', 'ASRS-#2', '8T1889', 0.0000, 9.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877187', 'ASRS-#2', '4792172', 0.0000, 9.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877188', 'ASRS-#2', '2006345', 0.0000, 4.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877189', 'ASRS-#2', '5P4116', 0.0000, 15.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877190', 'ASRS-#2', '3979301', 0.0000, 26.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877191', 'ASRS-#2', '3B8489', 0.0000, 11.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877192', 'ASRS-#2', '8T4186', 0.0000, 20.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877193', 'ASRS-#2', '1984777', 0.0000, 19.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877194', 'ASRS-#2', '8T4183', 0.0000, 10.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877195', 'ASRS-#2', '4883971', 0.0000, 8.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877196', 'ASRS-#2', '8T4192', 0.0000, 12.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877197', 'ASRS-#2', '4792171', 0.0000, 59.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877198', 'ASRS-#2', '5621927', 0.0000, 29.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877199', 'ASRS-#2', '1305300', 0.0000, 3.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877200', 'ASRS-#2', '2048000', 0.0000, 12.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877201', 'ASRS-#2', '8T1890', 0.0000, 9.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877202', 'ASRS-#2', '3445675', 0.0000, 22.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877203', 'ASRS-#2', '8T4121', 0.0000, 34.0000, 3); +INSERT INTO `tbl_app_goods_to_station` VALUES ('1825366956038877204', 'ASRS-#2', '0672551', 0.0000, 3.0000, 3); -- ---------------------------- -- Table structure for tbl_app_inventory_history @@ -869,15 +5260,16 @@ CREATE TABLE `tbl_app_kate_dbs` ( `dbs_status` int NULL DEFAULT NULL COMMENT '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 '最近更新用户', + `machine_no` 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; -- ---------------------------- -- 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'); +INSERT INTO `tbl_app_kate_dbs` VALUES ('DBS_202408121250300411723438230041', 112, '115000226284', '2024-04-10 00:00:00', 1, '2024-08-30 14:16:31', '管理员', 'WF810101'); +INSERT INTO `tbl_app_kate_dbs` VALUES ('DBS_202408121250300441723438230044', 121, '115000226285', '2024-04-11 00:00:00', 1, '2024-08-30 14:16:31', '管理员', 'AH810101'); +INSERT INTO `tbl_app_kate_dbs` VALUES ('DBS_202408121250300451723438230045', 131, '115000226286', '2024-04-12 00:00:00', 1, '2024-08-30 14:16:31', '管理员', 'WFX10101'); -- ---------------------------- -- Table structure for tbl_app_kate_dbs_history @@ -891,6 +5283,7 @@ CREATE TABLE `tbl_app_kate_dbs_history` ( `dbs_status` int NULL DEFAULT NULL COMMENT '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 '最近更新用户', + `machine_no` 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; @@ -910,12 +5303,16 @@ CREATE TABLE `tbl_app_kate_dbs_last` ( `dbs_status` int NULL DEFAULT NULL COMMENT '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 '最近更新用户', + `machine_no` 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; -- ---------------------------- -- Records of tbl_app_kate_dbs_last -- ---------------------------- +INSERT INTO `tbl_app_kate_dbs_last` VALUES ('DBS_202408121250300411723438230041', 112, '115000226284', '2024-04-10 00:00:00', 1, '2024-08-30 14:13:40', '管理员', 'WF810101'); +INSERT INTO `tbl_app_kate_dbs_last` VALUES ('DBS_202408121250300441723438230044', 121, '115000226285', '2024-04-11 00:00:00', 1, '2024-08-30 14:13:40', '管理员', 'AH810101'); +INSERT INTO `tbl_app_kate_dbs_last` VALUES ('DBS_202408121250300451723438230045', 131, '115000226286', '2024-04-12 00:00:00', 1, '2024-08-30 14:13:40', '管理员', 'WFX10101'); -- ---------------------------- -- Table structure for tbl_app_kate_orders @@ -945,430 +5342,252 @@ CREATE TABLE `tbl_app_kate_orders` ( -- ---------------------------- -- 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); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106131724998210613', '115000226286', '0672551', '0420', 'CLIP', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106141724998210614', '115000226286', '0672551', '0080', 'CLIP', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106161724998210616', '115000226286', '0672551', '0010', 'CLIP', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106171724998210617', '115000226286', '0672551', '0910', 'CLIP', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106181724998210618', '115000226286', '0672551', '0010', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106201724998210620', '115000226286', '1984777', '0680', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106211724998210621', '115000226286', '1984777', '0170', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106221724998210622', '115000226286', '2006345', '1540', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106231724998210623', '115000226286', '2006345', '1550', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106261724998210626', '115000226286', '2006345', '1560', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106271724998210627', '115000226286', '2006345', '0140', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106281724998210628', '115000226286', '2006345', '0500', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106301724998210630', '115000226286', '2006345', '0300', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106321724998210632', '115000226286', '2006345', '0030', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106331724998210633', '115000226286', '2048000', '0510', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106351724998210635', '115000226286', '2048000', '0040', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106361724998210636', '115000226286', '2048000', '0430', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106371724998210637', '115000226286', '3445675', '0790', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106391724998210639', '115000226286', '3445675', '0150', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 4.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106401724998210640', '115000226286', '3445675', '0120', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106411724998210641', '115000226286', '3445675', '0410', 'NUT-HEX', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106421724998210642', '115000226286', '3445675', '0260', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106431724998210643', '115000226286', '3445675', '0300', 'NUT-HEX', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106451724998210645', '115000226286', '3445675', '0290', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106461724998210646', '115000226286', '3445675', '0100', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 4.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106481724998210648', '115000226286', '3979301', '0150', 'SPACER-HARD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106501724998210650', '115000226286', '3B8489', '0010', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 12.0000, 'PC', 0, 22.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106511724998210651', '115000226286', '3B8489', '0090', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106531724998210653', '115000226286', '4792171', '1590', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106541724998210654', '115000226286', '4792171', '1600', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106551724998210655', '115000226286', '4792171', '1610', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106571724998210657', '115000226286', '4792171', '0230', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106581724998210658', '115000226286', '4792171', '0390', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 10.0000, 'PC', 0, 11.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106591724998210659', '115000226286', '4792171', '0120', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106601724998210660', '115000226286', '4792171', '0140', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 2.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106621724998210662', '115000226286', '4792171', '0220', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 2.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106631724998210663', '115000226286', '4792171', '0540', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 8.0000, 'PC', 0, 15.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106651724998210665', '115000226286', '4792171', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106801724998210680', '115000226286', '4792171', '0130', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106821724998210682', '115000226286', '4792171', '0380', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106831724998210683', '115000226286', '4792171', '0140', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW04MIA', 'ASRS-00001', 12.0000, 'PC', 0, 12.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106851724998210685', '115000226286', '4792172', '0160', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106861724998210686', '115000226286', '4792172', '0420', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106871724998210687', '115000226286', '4792172', '0100', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 24.0000, 'PC', 0, 24.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106881724998210688', '115000226286', '4883971', '0140', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 8.0000, 'PC', 0, 12.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106901724998210690', '115000226286', '4883971', '0410', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106911724998210691', '115000226286', '4883971', '0700', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106931724998210693', '115000226286', '4883971', '0120', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106941724998210694', '115000226286', '5621927', '0160', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 8.0000, 'PC', 0, 10.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106951724998210695', '115000226286', '5621927', '0430', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106971724998210697', '115000226286', '5621927', '0170', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410106991724998210699', '115000226286', '5621927', '0180', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107001724998210700', '115000226286', '5621927', '0660', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 5.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107011724998210701', '115000226286', '5621927', '0190', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107021724998210702', '115000226286', '5621927', '0210', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107051724998210705', '115000226286', '5621927', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107071724998210707', '115000226286', '5P4116', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107091724998210709', '115000226286', '5P4116', '0020', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107101724998210710', '115000226286', '5P4116', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 11.0000, 'PC', 0, 21.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107121724998210712', '115000226286', '5P4116', '0230', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107141724998210714', '115000226286', '5P4116', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107161724998210716', '115000226286', '8T1889', '1050', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107231724998210723', '115000226286', '8T1889', '0940', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107251724998210725', '115000226286', '8T1889', '1100', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107261724998210726', '115000226286', '8T1889', '0790', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107291724998210728', '115000226286', '8T1889', '0270', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107301724998210730', '115000226286', '8T1890', '1060', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107311724998210731', '115000226286', '8T1890', '0950', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107331724998210733', '115000226286', '8T1890', '1110', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107351724998210735', '115000226286', '8T1890', '0800', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107361724998210736', '115000226286', '8T1890', '0280', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107371724998210737', '115000226286', '8T4121', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 4.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107381724998210738', '115000226286', '8T4121', '0060', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107391724998210739', '115000226286', '8T4121', '0060', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 11.0000, 'PC', 0, 13.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107401724998210740', '115000226286', '8T4121', '0960', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107411724998210741', '115000226286', '8T4121', '0810', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107431724998210743', '115000226286', '8T4183', '1090', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107441724998210744', '115000226286', '8T4183', '1350', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107451724998210745', '115000226286', '8T4183', '1360', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 5.0000, 'PC', 0, 9.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107461724998210746', '115000226286', '8T4183', '0050', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107471724998210747', '115000226286', '8T4183', '0980', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 5.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107491724998210749', '115000226286', '8T4183', '0840', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 9.0000, 'PC', 0, 9.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107501724998210750', '115000226286', '8T4183', '0040', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107511724998210751', '115000226286', '8T4183', '0100', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107521724998210752', '115000226286', '8T4186', '0070', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107541724998210754', '115000226286', '8T4186', '0670', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107551724998210755', '115000226286', '8T4186', '0450', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107571724998210757', '115000226286', '8T4186', '0330', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107581724998210758', '115000226286', '8T4192', '0170', 'BOLT', 'HK01', NULL, 'REL', 'KAMW01MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107601724998210760', '115000226286', '8T4192', '0410', 'BOLT', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107611724998210761', '115000226286', '8T4192', '0990', 'BOLT', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 5.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107621724998210762', '115000226286', '8T4192', '0690', 'BOLT', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107631724998210763', '115000226286', '8T4192', '0870', 'BOLT', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107651724998210765', '115000226285', '0672551', '0190', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107661724998210766', '115000226285', '0672551', '0640', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107681724998210768', '115000226285', '0672551', '0620', 'CLIP', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107691724998210769', '115000226285', '1984777', '0340', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107701724998210770', '115000226285', '1984777', '1960', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107721724998210772', '115000226285', '2006345', '0900', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107741724998210774', '115000226285', '2006345', '0180', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107751724998210775', '115000226285', '2006345', '0350', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107761724998210776', '115000226285', '2006345', '0690', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107801724998210780', '115000226285', '2048000', '0660', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107821724998210782', '115000226285', '2048000', '0170', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107831724998210783', '115000226285', '2048000', '0370', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107841724998210784', '115000226285', '2048000', '0370', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107851724998210785', '115000226285', '2048000', '0710', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107871724998210787', '115000226285', '3445675', '0290', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 6.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107881724998210788', '115000226285', '3445675', '0140', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107901724998210790', '115000226285', '3445675', '0290', 'NUT-HEX', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107911724998210791', '115000226285', '3445675', '0500', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107921724998210792', '115000226285', '3445675', '0700', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107931724998210793', '115000226285', '3445675', '0430', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107951724998210795', '115000226285', '3445675', '0790', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 5.0000, 'PC', 0, 9.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107961724998210796', '115000226285', '3979301', '0330', 'SPACER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107971724998210797', '115000226285', '3979301', '0200', 'SPACER-HARD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410107991724998210799', '115000226285', '3979301', '0260', 'SPACER-HARD', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108001724998210800', '115000226285', '3B8489', '0730', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108011724998210801', '115000226285', '3B8489', '0010', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108021724998210802', '115000226285', '3B8489', '0060', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108041724998210804', '115000226285', '4792171', '0040', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 5.0000, 'PC', 0, 9.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108051724998210805', '115000226285', '4792171', '0320', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108061724998210806', '115000226285', '4792171', '0730', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 2.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108071724998210807', '115000226285', '4792171', '0740', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108081724998210808', '115000226285', '4792171', '0750', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108091724998210809', '115000226285', '4792171', '0920', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108101724998210810', '115000226285', '4792171', '0520', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108121724998210812', '115000226285', '4792171', '0490', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 2.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108131724998210813', '115000226285', '4792171', '0250', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW04MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108151724998210815', '115000226285', '4792171', '0270', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 2.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108161724998210816', '115000226285', '4792171', '0720', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108171724998210817', '115000226285', '4792171', '0730', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108241724998210824', '115000226285', '4792171', '0670', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 12.0000, 'PC', 0, 12.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108251724998210825', '115000226285', '4792171', '0960', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108271724998210827', '115000226285', '4792172', '0330', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108281724998210828', '115000226285', '4792172', '0200', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108291724998210829', '115000226285', '4792172', '0390', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108301724998210830', '115000226285', '4792172', '0290', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108321724998210832', '115000226285', '4883971', '0410', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108411724998210841', '115000226285', '4883971', '1010', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108421724998210842', '115000226285', '4883971', '0300', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108431724998210843', '115000226285', '5621927', '0060', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108451724998210845', '115000226285', '5621927', '0120', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108461724998210846', '115000226285', '5621927', '0740', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108481724998210848', '115000226285', '5621927', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108491724998210849', '115000226285', '5621927', '0030', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108511724998210851', '115000226285', '5621927', '0390', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108521724998210852', '115000226285', '5621927', '0020', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 11.0000, 'PC', 0, 14.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108531724998210853', '115000226285', '5P4116', '0050', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 12.0000, 'PC', 0, 18.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108551724998210855', '115000226285', '8T1889', '0080', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 7.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108571724998210857', '115000226285', '8T1889', '0190', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108581724998210858', '115000226285', '8T1889', '0720', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108591724998210859', '115000226285', '8T1889', '0050', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108611724998210861', '115000226285', '8T1889', '0240', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108621724998210862', '115000226285', '8T1889', '1280', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 4.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108631724998210863', '115000226285', '8T1890', '0090', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 7.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108651724998210865', '115000226285', '8T1890', '0690', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108661724998210866', '115000226285', '8T1890', '0730', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108681724998210868', '115000226285', '8T1890', '0060', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108731724998210873', '115000226285', '8T1890', '0250', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108751724998210875', '115000226285', '8T1890', '1300', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 4.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108761724998210876', '115000226285', '8T4121', '0050', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108781724998210878', '115000226285', '8T4121', '0100', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108801724998210880', '115000226285', '8T4121', '0650', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108811724998210881', '115000226285', '8T4121', '0080', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108831724998210883', '115000226285', '8T4121', '0180', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108841724998210884', '115000226285', '8T4183', '0220', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108861724998210886', '115000226285', '8T4183', '0130', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108871724998210887', '115000226285', '8T4183', '0070', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 5.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108891724998210889', '115000226285', '8T4183', '0100', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108901724998210890', '115000226285', '8T4183', '0030', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108911724998210891', '115000226285', '8T4186', '0120', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108931724998210893', '115000226285', '8T4186', '0090', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108941724998210894', '115000226285', '8T4192', '0120', 'BOLT', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108951724998210895', '115000226285', '8T4192', '0970', 'BOLT', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108971724998210897', '115000226284', '0672551', '0330', 'CLIP', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 4.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410108991724998210899', '115000226284', '0672551', '0150', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109001724998210900', '115000226284', '0672551', '0410', 'CLIP', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109021724998210902', '115000226284', '0672551', '0340', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109031724998210903', '115000226284', '0672551', '1170', 'CLIP', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109051724998210905', '115000226284', '1305300', '0210', 'CLIP', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109061724998210906', '115000226284', '1984777', '0340', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109071724998210907', '115000226284', '1984777', '0290', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109091724998210909', '115000226284', '2006345', '1220', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109101724998210910', '115000226284', '2006345', '1230', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109121724998210912', '115000226284', '2048000', '0260', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109131724998210913', '115000226284', '2048000', '0600', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109141724998210914', '115000226284', '2048000', '0310', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109161724998210916', '115000226284', '3445675', '0410', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109171724998210917', '115000226284', '3445675', '1260', 'NUT-HEX', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109181724998210918', '115000226284', '3445675', '0730', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109191724998210919', '115000226284', '3445675', '0190', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109201724998210920', '115000226284', '3B8489', '0740', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109221724998210922', '115000226284', '3B8489', '0010', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 9.0000, 'PC', 0, 14.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109241724998210924', '115000226284', '4792171', '0690', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109251724998210925', '115000226284', '4792171', '0550', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109271724998210927', '115000226284', '4792171', '0720', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 6.0000, 'PC', 0, 9.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109281724998210928', '115000226284', '4792171', '0730', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109321724998210932', '115000226284', '4792171', '0470', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109341724998210934', '115000226284', '4792171', '0080', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 4.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109351724998210935', '115000226284', '4792171', '0340', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109361724998210936', '115000226284', '4792171', '0360', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 5.0000, 'PC', 0, 9.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109371724998210937', '115000226284', '4792171', '0440', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109391724998210939', '115000226284', '4792171', '1280', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109401724998210940', '115000226284', '4792171', '1290', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109411724998210941', '115000226284', '4792171', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW04MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109421724998210942', '115000226284', '4792171', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109441724998210944', '115000226284', '4792172', '0880', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109451724998210945', '115000226284', '4792172', '0350', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109461724998210946', '115000226284', '4792172', '0160', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109471724998210947', '115000226284', '4792172', '0280', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109491724998210949', '115000226284', '4792172', '0290', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109571724998210957', '115000226284', '4883971', '0920', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109591724998210959', '115000226284', '4883971', '0120', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109601724998210960', '115000226284', '4883971', '0420', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109611724998210961', '115000226284', '5621927', '0070', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 4.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109621724998210962', '115000226284', '5621927', '0640', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109631724998210963', '115000226284', '5621927', '0540', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109641724998210964', '115000226284', '5621927', '0370', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109651724998210965', '115000226284', '5621927', '0550', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109661724998210966', '115000226284', '5621927', '0560', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109671724998210967', '115000226284', '5621927', '0310', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109691724998210969', '115000226284', '5621927', '0160', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109701724998210970', '115000226284', '5621927', '0670', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109721724998210972', '115000226284', '5621927', '1030', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109731724998210973', '115000226284', '5621927', '0530', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 10.0000, 'PC', 0, 11.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109741724998210974', '115000226284', '5P4116', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 5.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109751724998210975', '115000226284', '5P4116', '0370', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109771724998210977', '115000226284', '8T1889', '0080', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109781724998210978', '115000226284', '8T1889', '0130', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109801724998210980', '115000226284', '8T1890', '0090', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 3.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109821724998210982', '115000226284', '8T1890', '0140', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109841724998210984', '115000226284', '8T4121', '0090', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109901724998210990', '115000226284', '8T4121', '1040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109921724998210992', '115000226284', '8T4121', '0050', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109931724998210993', '115000226284', '8T4121', '0180', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109951724998210995', '115000226284', '8T4121', '0200', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109961724998210996', '115000226284', '8T4121', '0020', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109971724998210997', '115000226284', '8T4121', '0060', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410109991724998210999', '115000226284', '8T4183', '0150', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KAMW01MI1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410110011724998211001', '115000226284', '8T4183', '0030', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410110021724998211002', '115000226284', '8T4186', '0160', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410110041724998211004', '115000226284', '8T4192', '0240', 'BOLT', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410110051724998211005', '115000226284', '8T4192', '0130', 'BOLT', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410110061724998211006', '115000226284', '8T4192', '0080', 'BOLT', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408301410110081724998211008', '115000226284', '8T4192', '0050', 'BOLT', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); -- ---------------------------- -- Table structure for tbl_app_kate_orders_history @@ -1427,6 +5646,252 @@ CREATE TABLE `tbl_app_kate_orders_last` ( -- ---------------------------- -- Records of tbl_app_kate_orders_last -- ---------------------------- +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106131724998210613', '115000226286', '0672551', '0420', 'CLIP', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106141724998210614', '115000226286', '0672551', '0080', 'CLIP', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106161724998210616', '115000226286', '0672551', '0010', 'CLIP', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106171724998210617', '115000226286', '0672551', '0910', 'CLIP', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106181724998210618', '115000226286', '0672551', '0010', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106201724998210620', '115000226286', '1984777', '0680', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106211724998210621', '115000226286', '1984777', '0170', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106221724998210622', '115000226286', '2006345', '1540', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106231724998210623', '115000226286', '2006345', '1550', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106261724998210626', '115000226286', '2006345', '1560', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106271724998210627', '115000226286', '2006345', '0140', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106281724998210628', '115000226286', '2006345', '0500', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106301724998210630', '115000226286', '2006345', '0300', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106321724998210632', '115000226286', '2006345', '0030', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106331724998210633', '115000226286', '2048000', '0510', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106351724998210635', '115000226286', '2048000', '0040', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106361724998210636', '115000226286', '2048000', '0430', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106371724998210637', '115000226286', '3445675', '0790', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106391724998210639', '115000226286', '3445675', '0150', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106401724998210640', '115000226286', '3445675', '0120', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106411724998210641', '115000226286', '3445675', '0410', 'NUT-HEX', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106421724998210642', '115000226286', '3445675', '0260', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106431724998210643', '115000226286', '3445675', '0300', 'NUT-HEX', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106451724998210645', '115000226286', '3445675', '0290', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106461724998210646', '115000226286', '3445675', '0100', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106481724998210648', '115000226286', '3979301', '0150', 'SPACER-HARD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106501724998210650', '115000226286', '3B8489', '0010', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 12.0000, 'PC', 0, 12.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106511724998210651', '115000226286', '3B8489', '0090', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106531724998210653', '115000226286', '4792171', '1590', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106541724998210654', '115000226286', '4792171', '1600', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106551724998210655', '115000226286', '4792171', '1610', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106571724998210657', '115000226286', '4792171', '0230', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106581724998210658', '115000226286', '4792171', '0390', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 10.0000, 'PC', 0, 10.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106591724998210659', '115000226286', '4792171', '0120', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106601724998210660', '115000226286', '4792171', '0140', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106621724998210662', '115000226286', '4792171', '0220', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106631724998210663', '115000226286', '4792171', '0540', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106651724998210665', '115000226286', '4792171', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106801724998210680', '115000226286', '4792171', '0130', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106821724998210682', '115000226286', '4792171', '0380', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106831724998210683', '115000226286', '4792171', '0140', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW04MIA', 'ASRS-00001', 12.0000, 'PC', 0, 12.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106851724998210685', '115000226286', '4792172', '0160', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106861724998210686', '115000226286', '4792172', '0420', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106871724998210687', '115000226286', '4792172', '0100', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 24.0000, 'PC', 0, 24.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106881724998210688', '115000226286', '4883971', '0140', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106901724998210690', '115000226286', '4883971', '0410', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106911724998210691', '115000226286', '4883971', '0700', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106931724998210693', '115000226286', '4883971', '0120', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106941724998210694', '115000226286', '5621927', '0160', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106951724998210695', '115000226286', '5621927', '0430', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106971724998210697', '115000226286', '5621927', '0170', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410106991724998210699', '115000226286', '5621927', '0180', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107001724998210700', '115000226286', '5621927', '0660', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107011724998210701', '115000226286', '5621927', '0190', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107021724998210702', '115000226286', '5621927', '0210', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107051724998210705', '115000226286', '5621927', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107071724998210707', '115000226286', '5P4116', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107091724998210709', '115000226286', '5P4116', '0020', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107101724998210710', '115000226286', '5P4116', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 11.0000, 'PC', 0, 11.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107121724998210712', '115000226286', '5P4116', '0230', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107141724998210714', '115000226286', '5P4116', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107161724998210716', '115000226286', '8T1889', '1050', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107231724998210723', '115000226286', '8T1889', '0940', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107251724998210725', '115000226286', '8T1889', '1100', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107261724998210726', '115000226286', '8T1889', '0790', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107291724998210728', '115000226286', '8T1889', '0270', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107301724998210730', '115000226286', '8T1890', '1060', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107311724998210731', '115000226286', '8T1890', '0950', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107331724998210733', '115000226286', '8T1890', '1110', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107351724998210735', '115000226286', '8T1890', '0800', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107361724998210736', '115000226286', '8T1890', '0280', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107371724998210737', '115000226286', '8T4121', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107381724998210738', '115000226286', '8T4121', '0060', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107391724998210739', '115000226286', '8T4121', '0060', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 11.0000, 'PC', 0, 11.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107401724998210740', '115000226286', '8T4121', '0960', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107411724998210741', '115000226286', '8T4121', '0810', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107431724998210743', '115000226286', '8T4183', '1090', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107441724998210744', '115000226286', '8T4183', '1350', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107451724998210745', '115000226286', '8T4183', '1360', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107461724998210746', '115000226286', '8T4183', '0050', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107471724998210747', '115000226286', '8T4183', '0980', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107491724998210749', '115000226286', '8T4183', '0840', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 9.0000, 'PC', 0, 9.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107501724998210750', '115000226286', '8T4183', '0040', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107511724998210751', '115000226286', '8T4183', '0100', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107521724998210752', '115000226286', '8T4186', '0070', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107541724998210754', '115000226286', '8T4186', '0670', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107551724998210755', '115000226286', '8T4186', '0450', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107571724998210757', '115000226286', '8T4186', '0330', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107581724998210758', '115000226286', '8T4192', '0170', 'BOLT', 'HK01', NULL, 'REL', 'KAMW01MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107601724998210760', '115000226286', '8T4192', '0410', 'BOLT', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107611724998210761', '115000226286', '8T4192', '0990', 'BOLT', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107621724998210762', '115000226286', '8T4192', '0690', 'BOLT', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107631724998210763', '115000226286', '8T4192', '0870', 'BOLT', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107651724998210765', '115000226285', '0672551', '0190', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107661724998210766', '115000226285', '0672551', '0640', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107681724998210768', '115000226285', '0672551', '0620', 'CLIP', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107691724998210769', '115000226285', '1984777', '0340', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107701724998210770', '115000226285', '1984777', '1960', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107721724998210772', '115000226285', '2006345', '0900', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107741724998210774', '115000226285', '2006345', '0180', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107751724998210775', '115000226285', '2006345', '0350', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107761724998210776', '115000226285', '2006345', '0690', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107801724998210780', '115000226285', '2048000', '0660', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107821724998210782', '115000226285', '2048000', '0170', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107831724998210783', '115000226285', '2048000', '0370', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107841724998210784', '115000226285', '2048000', '0370', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107851724998210785', '115000226285', '2048000', '0710', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107871724998210787', '115000226285', '3445675', '0290', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107881724998210788', '115000226285', '3445675', '0140', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107901724998210790', '115000226285', '3445675', '0290', 'NUT-HEX', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107911724998210791', '115000226285', '3445675', '0500', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107921724998210792', '115000226285', '3445675', '0700', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107931724998210793', '115000226285', '3445675', '0430', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107951724998210795', '115000226285', '3445675', '0790', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107961724998210796', '115000226285', '3979301', '0330', 'SPACER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107971724998210797', '115000226285', '3979301', '0200', 'SPACER-HARD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410107991724998210799', '115000226285', '3979301', '0260', 'SPACER-HARD', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108001724998210800', '115000226285', '3B8489', '0730', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108011724998210801', '115000226285', '3B8489', '0010', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108021724998210802', '115000226285', '3B8489', '0060', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108041724998210804', '115000226285', '4792171', '0040', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108051724998210805', '115000226285', '4792171', '0320', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108061724998210806', '115000226285', '4792171', '0730', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108071724998210807', '115000226285', '4792171', '0740', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108081724998210808', '115000226285', '4792171', '0750', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108091724998210809', '115000226285', '4792171', '0920', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108101724998210810', '115000226285', '4792171', '0520', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108121724998210812', '115000226285', '4792171', '0490', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108131724998210813', '115000226285', '4792171', '0250', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW04MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108151724998210815', '115000226285', '4792171', '0270', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108161724998210816', '115000226285', '4792171', '0720', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108171724998210817', '115000226285', '4792171', '0730', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108241724998210824', '115000226285', '4792171', '0670', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 12.0000, 'PC', 0, 12.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108251724998210825', '115000226285', '4792171', '0960', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108271724998210827', '115000226285', '4792172', '0330', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108281724998210828', '115000226285', '4792172', '0200', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108291724998210829', '115000226285', '4792172', '0390', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108301724998210830', '115000226285', '4792172', '0290', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108321724998210832', '115000226285', '4883971', '0410', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108411724998210841', '115000226285', '4883971', '1010', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108421724998210842', '115000226285', '4883971', '0300', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108431724998210843', '115000226285', '5621927', '0060', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108451724998210845', '115000226285', '5621927', '0120', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108461724998210846', '115000226285', '5621927', '0740', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108481724998210848', '115000226285', '5621927', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108491724998210849', '115000226285', '5621927', '0030', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108511724998210851', '115000226285', '5621927', '0390', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108521724998210852', '115000226285', '5621927', '0020', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 11.0000, 'PC', 0, 11.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108531724998210853', '115000226285', '5P4116', '0050', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 12.0000, 'PC', 0, 12.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108551724998210855', '115000226285', '8T1889', '0080', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 7.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108571724998210857', '115000226285', '8T1889', '0190', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108581724998210858', '115000226285', '8T1889', '0720', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108591724998210859', '115000226285', '8T1889', '0050', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108611724998210861', '115000226285', '8T1889', '0240', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108621724998210862', '115000226285', '8T1889', '1280', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108631724998210863', '115000226285', '8T1890', '0090', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 7.0000, 'PC', 0, 7.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108651724998210865', '115000226285', '8T1890', '0690', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108661724998210866', '115000226285', '8T1890', '0730', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108681724998210868', '115000226285', '8T1890', '0060', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108731724998210873', '115000226285', '8T1890', '0250', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108751724998210875', '115000226285', '8T1890', '1300', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108761724998210876', '115000226285', '8T4121', '0050', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108781724998210878', '115000226285', '8T4121', '0100', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108801724998210880', '115000226285', '8T4121', '0650', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108811724998210881', '115000226285', '8T4121', '0080', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108831724998210883', '115000226285', '8T4121', '0180', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108841724998210884', '115000226285', '8T4183', '0220', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET5', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108861724998210886', '115000226285', '8T4183', '0130', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108871724998210887', '115000226285', '8T4183', '0070', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108891724998210889', '115000226285', '8T4183', '0100', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108901724998210890', '115000226285', '8T4183', '0030', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108911724998210891', '115000226285', '8T4186', '0120', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108931724998210893', '115000226285', '8T4186', '0090', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108941724998210894', '115000226285', '8T4192', '0120', 'BOLT', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108951724998210895', '115000226285', '8T4192', '0970', 'BOLT', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108971724998210897', '115000226284', '0672551', '0330', 'CLIP', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410108991724998210899', '115000226284', '0672551', '0150', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109001724998210900', '115000226284', '0672551', '0410', 'CLIP', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109021724998210902', '115000226284', '0672551', '0340', 'CLIP', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109031724998210903', '115000226284', '0672551', '1170', 'CLIP', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109051724998210905', '115000226284', '1305300', '0210', 'CLIP', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109061724998210906', '115000226284', '1984777', '0340', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109071724998210907', '115000226284', '1984777', '0290', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109091724998210909', '115000226284', '2006345', '1220', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109101724998210910', '115000226284', '2006345', '1230', 'MOUNT-DUALSWIVEL', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109121724998210912', '115000226284', '2048000', '0260', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109131724998210913', '115000226284', '2048000', '0600', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109141724998210914', '115000226284', '2048000', '0310', 'MOUNT-TIE WRAP', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109161724998210916', '115000226284', '3445675', '0410', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109171724998210917', '115000226284', '3445675', '1260', 'NUT-HEX', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109181724998210918', '115000226284', '3445675', '0730', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109191724998210919', '115000226284', '3445675', '0190', 'NUT-HEX', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109201724998210920', '115000226284', '3B8489', '0740', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109221724998210922', '115000226284', '3B8489', '0010', 'ADAPTER-STR', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 9.0000, 'PC', 0, 9.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109241724998210924', '115000226284', '4792171', '0690', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109251724998210925', '115000226284', '4792171', '0550', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109271724998210927', '115000226284', '4792171', '0720', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109281724998210928', '115000226284', '4792171', '0730', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET6', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109321724998210932', '115000226284', '4792171', '0470', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109341724998210934', '115000226284', '4792171', '0080', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109351724998210935', '115000226284', '4792171', '0340', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109361724998210936', '115000226284', '4792171', '0360', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109371724998210937', '115000226284', '4792171', '0440', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109391724998210939', '115000226284', '4792171', '1280', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109401724998210940', '115000226284', '4792171', '1290', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109411724998210941', '115000226284', '4792171', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW04MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109421724998210942', '115000226284', '4792171', '0400', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109441724998210944', '115000226284', '4792172', '0880', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109451724998210945', '115000226284', '4792172', '0350', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109461724998210946', '115000226284', '4792172', '0160', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW01MI2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109471724998210947', '115000226284', '4792172', '0280', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109491724998210949', '115000226284', '4792172', '0290', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109571724998210957', '115000226284', '4883971', '0920', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109591724998210959', '115000226284', '4883971', '0120', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109601724998210960', '115000226284', '4883971', '0420', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109611724998210961', '115000226284', '5621927', '0070', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109621724998210962', '115000226284', '5621927', '0640', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109631724998210963', '115000226284', '5621927', '0540', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET4', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109641724998210964', '115000226284', '5621927', '0370', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109651724998210965', '115000226284', '5621927', '0550', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109661724998210966', '115000226284', '5621927', '0560', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109671724998210967', '115000226284', '5621927', '0310', 'BOLT AS', 'HK01', NULL, 'REL', 'KAMW02MI2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109691724998210969', '115000226284', '5621927', '0160', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109701724998210970', '115000226284', '5621927', '0670', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109721724998210972', '115000226284', '5621927', '1030', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109731724998210973', '115000226284', '5621927', '0530', 'BOLT AS', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 10.0000, 'PC', 0, 10.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109741724998210974', '115000226284', '5P4116', '0040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 5.0000, 'PC', 0, 5.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109751724998210975', '115000226284', '5P4116', '0370', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109771724998210977', '115000226284', '8T1889', '0080', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109781724998210978', '115000226284', '8T1889', '0130', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109801724998210980', '115000226284', '8T1890', '0090', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW06ET1', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109821724998210982', '115000226284', '8T1890', '0140', 'CLIP-2 PIECE', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109841724998210984', '115000226284', '8T4121', '0090', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW05MIA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109901724998210990', '115000226284', '8T4121', '1040', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 4.0000, 'PC', 0, 4.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109921724998210992', '115000226284', '8T4121', '0050', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 8.0000, 'PC', 0, 8.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109931724998210993', '115000226284', '8T4121', '0180', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KASW02NF5', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109951724998210995', '115000226284', '8T4121', '0200', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET2', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109961724998210996', '115000226284', '8T4121', '0020', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW03ET3', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109971724998210997', '115000226284', '8T4121', '0060', 'WASHER-HARD', 'HK01', NULL, 'REL', 'KAMW04MI1', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410109991724998210999', '115000226284', '8T4183', '0150', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KAMW01MI1', 'ASRS-00001', 6.0000, 'PC', 0, 6.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410110011724998211001', '115000226284', '8T4183', '0030', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW06ET2', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410110021724998211002', '115000226284', '8T4186', '0160', 'BOLT-HEX HEAD', 'HK01', NULL, 'REL', 'KASW08LAA', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410110041724998211004', '115000226284', '8T4192', '0240', 'BOLT', 'HK01', NULL, 'REL', 'KASW03VAA', 'ASRS-00001', 3.0000, 'PC', 0, 3.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410110051724998211005', '115000226284', '8T4192', '0130', 'BOLT', 'HK01', NULL, 'REL', 'KASW06ET3', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410110061724998211006', '115000226284', '8T4192', '0080', 'BOLT', 'HK01', NULL, 'REL', 'KASW02NF6', 'ASRS-00001', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders_last` VALUES ('ORDER_202408301410110081724998211008', '115000226284', '8T4192', '0050', 'BOLT', 'HK01', NULL, 'REL', 'KASW02NF4', 'ASRS-00001', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); -- ---------------------------- -- Table structure for tbl_app_location @@ -7093,7 +11558,7 @@ INSERT INTO `tbl_app_location` VALUES ('05-01-08-01', 1, 3, 1, 5, 1, 8, 1, 0, 1, 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-12-01', 1, 3, 1, 5, 1, 12, 1, 0, 1, 'ASRS000136'); 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'); @@ -12890,94 +17355,94 @@ INSERT INTO `tbl_app_location` VALUES ('09-08-19-01', 1, 5, 1, 9, 8, 19, 1, 0, 0 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-09-01-01', 1, 5, 1, 9, 9, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-02-01', 1, 5, 1, 9, 9, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-03-01', 1, 5, 1, 9, 9, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-04-01', 1, 5, 1, 9, 9, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-05-01', 1, 5, 1, 9, 9, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-06-01', 1, 5, 1, 9, 9, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-07-01', 1, 5, 1, 9, 9, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-08-01', 1, 5, 1, 9, 9, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-09-01', 1, 5, 1, 9, 9, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-10-01', 1, 5, 1, 9, 9, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-11-01', 1, 5, 1, 9, 9, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-12-01', 1, 5, 1, 9, 9, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-13-01', 1, 5, 1, 9, 9, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-14-01', 1, 5, 1, 9, 9, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-15-01', 1, 5, 1, 9, 9, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-16-01', 1, 5, 1, 9, 9, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-17-01', 1, 5, 1, 9, 9, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-18-01', 1, 5, 1, 9, 9, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-19-01', 1, 5, 1, 9, 9, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-20-01', 1, 5, 1, 9, 9, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-21-01', 1, 5, 1, 9, 9, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-22-01', 1, 5, 1, 9, 9, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-01-01', 1, 5, 1, 9, 10, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-02-01', 1, 5, 1, 9, 10, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-03-01', 1, 5, 1, 9, 10, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-04-01', 1, 5, 1, 9, 10, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-05-01', 1, 5, 1, 9, 10, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-06-01', 1, 5, 1, 9, 10, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-07-01', 1, 5, 1, 9, 10, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-08-01', 1, 5, 1, 9, 10, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-09-01', 1, 5, 1, 9, 10, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-10-01', 1, 5, 1, 9, 10, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-11-01', 1, 5, 1, 9, 10, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-12-01', 1, 5, 1, 9, 10, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-13-01', 1, 5, 1, 9, 10, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-14-01', 1, 5, 1, 9, 10, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-15-01', 1, 5, 1, 9, 10, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-16-01', 1, 5, 1, 9, 10, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-17-01', 1, 5, 1, 9, 10, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-18-01', 1, 5, 1, 9, 10, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-19-01', 1, 5, 1, 9, 10, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-20-01', 1, 5, 1, 9, 10, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-21-01', 1, 5, 1, 9, 10, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-22-01', 1, 5, 1, 9, 10, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-01-01', 1, 5, 1, 9, 11, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-02-01', 1, 5, 1, 9, 11, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-03-01', 1, 5, 1, 9, 11, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-04-01', 1, 5, 1, 9, 11, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-05-01', 1, 5, 1, 9, 11, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-06-01', 1, 5, 1, 9, 11, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-07-01', 1, 5, 1, 9, 11, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-08-01', 1, 5, 1, 9, 11, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-09-01', 1, 5, 1, 9, 11, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-10-01', 1, 5, 1, 9, 11, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-11-01', 1, 5, 1, 9, 11, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-12-01', 1, 5, 1, 9, 11, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-13-01', 1, 5, 1, 9, 11, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-14-01', 1, 5, 1, 9, 11, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-15-01', 1, 5, 1, 9, 11, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-16-01', 1, 5, 1, 9, 11, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-17-01', 1, 5, 1, 9, 11, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-18-01', 1, 5, 1, 9, 11, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-19-01', 1, 5, 1, 9, 11, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-20-01', 1, 5, 1, 9, 11, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-21-01', 1, 5, 1, 9, 11, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-22-01', 1, 5, 1, 9, 11, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-01-01', 1, 5, 1, 9, 12, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-02-01', 1, 5, 1, 9, 12, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-03-01', 1, 5, 1, 9, 12, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-04-01', 1, 5, 1, 9, 12, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-05-01', 1, 5, 1, 9, 12, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-06-01', 1, 5, 1, 9, 12, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-07-01', 1, 5, 1, 9, 12, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-08-01', 1, 5, 1, 9, 12, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-09-01', 1, 5, 1, 9, 12, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-10-01', 1, 5, 1, 9, 12, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-11-01', 1, 5, 1, 9, 12, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-12-01', 1, 5, 1, 9, 12, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-13-01', 1, 5, 1, 9, 12, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-14-01', 1, 5, 1, 9, 12, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-15-01', 1, 5, 1, 9, 12, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-16-01', 1, 5, 1, 9, 12, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-17-01', 1, 5, 1, 9, 12, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-18-01', 1, 5, 1, 9, 12, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-19-01', 1, 5, 1, 9, 12, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-20-01', 1, 5, 1, 9, 12, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-21-01', 1, 5, 1, 9, 12, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-22-01', 1, 5, 1, 9, 12, 22, 1, 1, 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); @@ -13330,94 +17795,94 @@ INSERT INTO `tbl_app_location` VALUES ('09-28-19-01', 1, 5, 1, 9, 28, 19, 1, 0, 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-29-01-01', 1, 5, 1, 9, 29, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-02-01', 1, 5, 1, 9, 29, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-03-01', 1, 5, 1, 9, 29, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-04-01', 1, 5, 1, 9, 29, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-05-01', 1, 5, 1, 9, 29, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-06-01', 1, 5, 1, 9, 29, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-07-01', 1, 5, 1, 9, 29, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-08-01', 1, 5, 1, 9, 29, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-09-01', 1, 5, 1, 9, 29, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-10-01', 1, 5, 1, 9, 29, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-11-01', 1, 5, 1, 9, 29, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-12-01', 1, 5, 1, 9, 29, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-13-01', 1, 5, 1, 9, 29, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-14-01', 1, 5, 1, 9, 29, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-15-01', 1, 5, 1, 9, 29, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-16-01', 1, 5, 1, 9, 29, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-17-01', 1, 5, 1, 9, 29, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-18-01', 1, 5, 1, 9, 29, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-19-01', 1, 5, 1, 9, 29, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-20-01', 1, 5, 1, 9, 29, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-21-01', 1, 5, 1, 9, 29, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-22-01', 1, 5, 1, 9, 29, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-01-01', 1, 5, 1, 9, 30, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-02-01', 1, 5, 1, 9, 30, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-03-01', 1, 5, 1, 9, 30, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-04-01', 1, 5, 1, 9, 30, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-05-01', 1, 5, 1, 9, 30, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-06-01', 1, 5, 1, 9, 30, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-07-01', 1, 5, 1, 9, 30, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-08-01', 1, 5, 1, 9, 30, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-09-01', 1, 5, 1, 9, 30, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-10-01', 1, 5, 1, 9, 30, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-11-01', 1, 5, 1, 9, 30, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-12-01', 1, 5, 1, 9, 30, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-13-01', 1, 5, 1, 9, 30, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-14-01', 1, 5, 1, 9, 30, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-15-01', 1, 5, 1, 9, 30, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-16-01', 1, 5, 1, 9, 30, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-17-01', 1, 5, 1, 9, 30, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-18-01', 1, 5, 1, 9, 30, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-19-01', 1, 5, 1, 9, 30, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-20-01', 1, 5, 1, 9, 30, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-21-01', 1, 5, 1, 9, 30, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-22-01', 1, 5, 1, 9, 30, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-01-01', 1, 5, 1, 9, 31, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-02-01', 1, 5, 1, 9, 31, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-03-01', 1, 5, 1, 9, 31, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-04-01', 1, 5, 1, 9, 31, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-05-01', 1, 5, 1, 9, 31, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-06-01', 1, 5, 1, 9, 31, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-07-01', 1, 5, 1, 9, 31, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-08-01', 1, 5, 1, 9, 31, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-09-01', 1, 5, 1, 9, 31, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-10-01', 1, 5, 1, 9, 31, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-11-01', 1, 5, 1, 9, 31, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-12-01', 1, 5, 1, 9, 31, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-13-01', 1, 5, 1, 9, 31, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-14-01', 1, 5, 1, 9, 31, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-15-01', 1, 5, 1, 9, 31, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-16-01', 1, 5, 1, 9, 31, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-17-01', 1, 5, 1, 9, 31, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-18-01', 1, 5, 1, 9, 31, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-19-01', 1, 5, 1, 9, 31, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-20-01', 1, 5, 1, 9, 31, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-21-01', 1, 5, 1, 9, 31, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-22-01', 1, 5, 1, 9, 31, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-01-01', 1, 5, 1, 9, 32, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-02-01', 1, 5, 1, 9, 32, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-03-01', 1, 5, 1, 9, 32, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-04-01', 1, 5, 1, 9, 32, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-05-01', 1, 5, 1, 9, 32, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-06-01', 1, 5, 1, 9, 32, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-07-01', 1, 5, 1, 9, 32, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-08-01', 1, 5, 1, 9, 32, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-09-01', 1, 5, 1, 9, 32, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-10-01', 1, 5, 1, 9, 32, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-11-01', 1, 5, 1, 9, 32, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-12-01', 1, 5, 1, 9, 32, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-13-01', 1, 5, 1, 9, 32, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-14-01', 1, 5, 1, 9, 32, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-15-01', 1, 5, 1, 9, 32, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-16-01', 1, 5, 1, 9, 32, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-17-01', 1, 5, 1, 9, 32, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-18-01', 1, 5, 1, 9, 32, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-19-01', 1, 5, 1, 9, 32, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-20-01', 1, 5, 1, 9, 32, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-21-01', 1, 5, 1, 9, 32, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-22-01', 1, 5, 1, 9, 32, 22, 1, 1, 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); @@ -13770,94 +18235,94 @@ INSERT INTO `tbl_app_location` VALUES ('09-48-19-01', 1, 5, 1, 9, 48, 19, 1, 0, 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-49-01-01', 1, 5, 1, 9, 49, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-02-01', 1, 5, 1, 9, 49, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-03-01', 1, 5, 1, 9, 49, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-04-01', 1, 5, 1, 9, 49, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-05-01', 1, 5, 1, 9, 49, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-06-01', 1, 5, 1, 9, 49, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-07-01', 1, 5, 1, 9, 49, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-08-01', 1, 5, 1, 9, 49, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-09-01', 1, 5, 1, 9, 49, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-10-01', 1, 5, 1, 9, 49, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-11-01', 1, 5, 1, 9, 49, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-12-01', 1, 5, 1, 9, 49, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-13-01', 1, 5, 1, 9, 49, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-14-01', 1, 5, 1, 9, 49, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-15-01', 1, 5, 1, 9, 49, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-16-01', 1, 5, 1, 9, 49, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-17-01', 1, 5, 1, 9, 49, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-18-01', 1, 5, 1, 9, 49, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-19-01', 1, 5, 1, 9, 49, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-20-01', 1, 5, 1, 9, 49, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-21-01', 1, 5, 1, 9, 49, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-22-01', 1, 5, 1, 9, 49, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-01-01', 1, 5, 1, 9, 50, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-02-01', 1, 5, 1, 9, 50, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-03-01', 1, 5, 1, 9, 50, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-04-01', 1, 5, 1, 9, 50, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-05-01', 1, 5, 1, 9, 50, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-06-01', 1, 5, 1, 9, 50, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-07-01', 1, 5, 1, 9, 50, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-08-01', 1, 5, 1, 9, 50, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-09-01', 1, 5, 1, 9, 50, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-10-01', 1, 5, 1, 9, 50, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-11-01', 1, 5, 1, 9, 50, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-12-01', 1, 5, 1, 9, 50, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-13-01', 1, 5, 1, 9, 50, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-14-01', 1, 5, 1, 9, 50, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-15-01', 1, 5, 1, 9, 50, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-16-01', 1, 5, 1, 9, 50, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-17-01', 1, 5, 1, 9, 50, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-18-01', 1, 5, 1, 9, 50, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-19-01', 1, 5, 1, 9, 50, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-20-01', 1, 5, 1, 9, 50, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-21-01', 1, 5, 1, 9, 50, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-22-01', 1, 5, 1, 9, 50, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-01-01', 1, 5, 1, 9, 51, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-02-01', 1, 5, 1, 9, 51, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-03-01', 1, 5, 1, 9, 51, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-04-01', 1, 5, 1, 9, 51, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-05-01', 1, 5, 1, 9, 51, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-06-01', 1, 5, 1, 9, 51, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-07-01', 1, 5, 1, 9, 51, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-08-01', 1, 5, 1, 9, 51, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-09-01', 1, 5, 1, 9, 51, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-10-01', 1, 5, 1, 9, 51, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-11-01', 1, 5, 1, 9, 51, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-12-01', 1, 5, 1, 9, 51, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-13-01', 1, 5, 1, 9, 51, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-14-01', 1, 5, 1, 9, 51, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-15-01', 1, 5, 1, 9, 51, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-16-01', 1, 5, 1, 9, 51, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-17-01', 1, 5, 1, 9, 51, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-18-01', 1, 5, 1, 9, 51, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-19-01', 1, 5, 1, 9, 51, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-20-01', 1, 5, 1, 9, 51, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-21-01', 1, 5, 1, 9, 51, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-22-01', 1, 5, 1, 9, 51, 22, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-01-01', 1, 5, 1, 9, 52, 1, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-02-01', 1, 5, 1, 9, 52, 2, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-03-01', 1, 5, 1, 9, 52, 3, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-04-01', 1, 5, 1, 9, 52, 4, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-05-01', 1, 5, 1, 9, 52, 5, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-06-01', 1, 5, 1, 9, 52, 6, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-07-01', 1, 5, 1, 9, 52, 7, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-08-01', 1, 5, 1, 9, 52, 8, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-09-01', 1, 5, 1, 9, 52, 9, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-10-01', 1, 5, 1, 9, 52, 10, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-11-01', 1, 5, 1, 9, 52, 11, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-12-01', 1, 5, 1, 9, 52, 12, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-13-01', 1, 5, 1, 9, 52, 13, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-14-01', 1, 5, 1, 9, 52, 14, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-15-01', 1, 5, 1, 9, 52, 15, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-16-01', 1, 5, 1, 9, 52, 16, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-17-01', 1, 5, 1, 9, 52, 17, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-18-01', 1, 5, 1, 9, 52, 18, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-19-01', 1, 5, 1, 9, 52, 19, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-20-01', 1, 5, 1, 9, 52, 20, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-21-01', 1, 5, 1, 9, 52, 21, 1, 1, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-22-01', 1, 5, 1, 9, 52, 22, 1, 1, 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); @@ -14123,6 +18588,32 @@ INSERT INTO `tbl_app_location` VALUES ('09-64-20-01', 1, 5, 1, 9, 64, 20, 1, 0, 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_no_plan +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_app_no_plan`; +CREATE TABLE `tbl_app_no_plan` ( + `record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'id', + `call_type` int NULL DEFAULT NULL COMMENT '领料类别:1、直接物料,2、间接物料', + `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 '库存数量', + `need_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '需要数量', + `work_order` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '工单---直接物料', + `small_vehicle_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '小车号---直接物料', + `call_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '领料原因---直接物料', + `flow_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '轻流流水号', + `remark` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '备注', + `call_time` datetime NULL DEFAULT NULL COMMENT '领料时间', + `call_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '领料人', + `picked_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '已拣选数量', + `pick_status` int NULL DEFAULT NULL COMMENT '状态', + PRIMARY KEY (`record_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of tbl_app_no_plan +-- ---------------------------- + -- ---------------------------- -- Table structure for tbl_app_outside_vehicles -- ---------------------------- @@ -14204,9 +18695,9 @@ CREATE TABLE `tbl_app_stand` ( -- Records of tbl_app_stand -- ---------------------------- 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-#1', 1, 1, 0, 0, 1, 1, 2, '', 'ASRS-#1', '2024-08-06 14:45:15', '', '', ''); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#2', 1, 1, 0, 0, 1, 1, 2, '', 'ASRS-#2', '2024-08-06 14:39:37', '', '', ''); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#3', 1, 1, 0, 0, 1, 1, 2, '', '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); @@ -14215,7 +18706,7 @@ INSERT INTO `tbl_app_stand` VALUES ('ASRS-#8', 1, 1, 0, 0, 1, 1, 2, NULL, 'ASRS- 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 ('TDJ3', 0, 0, 0, 0, 3, 1, 3, NULL, 'TDJ3', '2024-08-11 20:04:27', 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); @@ -14248,7 +18739,7 @@ INSERT INTO `tbl_app_stock` VALUES ('ST_202408020930389831722562238983', '01-01- 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_202408021333115231722576791523', '03-01-20-01', 'ASRS000185', NULL, 0, '2024-08-02 13:33:12', '2024-08-02 13:33:12', '管理员', 0, NULL, 0, '{\"goodsId\": \"8t4189\", \"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}'); @@ -14277,6 +18768,30 @@ INSERT INTO `tbl_app_stock` VALUES ('ST_202408021356195761722578179576', '02-02- 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_stock_update_record +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_app_stock_update_record`; +CREATE TABLE `tbl_app_stock_update_record` ( + `record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '记录id', + `stock_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '库存id', + `vehicle_id` 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 '料号', + `goods_name` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '物料描述', + `location_before` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '原库位', + `location_after` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '新库位', + `quantity_before` decimal(12, 4) NULL DEFAULT NULL COMMENT '原数量', + `quantity_after` decimal(12, 4) NULL DEFAULT NULL COMMENT '新数量', + `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '更新原因', + `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', + `update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '更新用户', + PRIMARY KEY (`record_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of tbl_app_stock_update_record +-- ---------------------------- + -- ---------------------------- -- Table structure for tbl_app_task -- ---------------------------- @@ -14305,6 +18820,7 @@ CREATE TABLE `tbl_app_task` ( -- ---------------------------- -- Records of tbl_app_task -- ---------------------------- +INSERT INTO `tbl_app_task` VALUES ('HK_202408112004266311723377866631', 1, 1, 1, '202408112004266341723377866634', NULL, '05-01-12-01', 0.000, 'ASRS000136', 1, '2024-08-11 20:04:27', 'WMS', NULL, NULL, NULL, NULL, NULL); -- ---------------------------- -- Table structure for tbl_app_task_bak @@ -14730,6 +19246,7 @@ 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_hash` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '文件哈希值', `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 '文件类型', @@ -14741,18 +19258,7 @@ CREATE TABLE `tbl_app_upload_record` ( -- ---------------------------- -- 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', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408301416312971724998591297', '1724998589191', '2laYvhe5tGliM1eZd5--yozl1JHA0mJDuv756hg3qdg', 'MWL DBS for Aug 2024 Compelete V9.xlsx', 'DBS', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-30 14:16:31', '管理员'); -- ---------------------------- -- Table structure for tbl_app_vehicle @@ -14965,12 +19471,239 @@ CREATE TABLE `tbl_app_work_flow` ( `work_status` int NULL DEFAULT NULL COMMENT '工作状态', `create_time` datetime NULL DEFAULT NULL COMMENT '任务创建时间', `finish_time` datetime NULL DEFAULT NULL COMMENT '任务完成时间', + `op_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '操作用户', PRIMARY KEY (`work_flow_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_work_flow -- ---------------------------- +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299531724036369953', 'ORDER_202408140957201361723600640136', 'ASRS-#1', '115000226284', 'KAMW09MI2', '5P4116', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299541724036369954', 'ORDER_202408140957199991723600639998', 'ASRS-#1', '115000226284', 'KAMW09MI1', '2048000', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299551724036369955', 'ORDER_202408140957200721723600640072', 'ASRS-#1', '115000226284', 'KAMW09MI1', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299571724036369957', 'ORDER_202408140957201611723600640161', 'ASRS-#1', '115000226284', 'KAMW09MI1', '8T4121', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299591724036369959', 'ORDER_202408140957200031723600640003', 'ASRS-#1', '115000226284', 'KAMW13MI3', '3445675', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299611724036369961', 'ORDER_202408140957201701723600640170', 'ASRS-#1', '115000226284', 'KAMW13MI3', '8T4121', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299631724036369963', 'ORDER_202408140957199791723600639979', 'ASRS-#1', '115000226284', 'KAMW13MI2', '1984777', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299661724036369966', 'ORDER_202408140957200961723600640096', 'ASRS-#1', '115000226284', 'KAMW13MI2', '4883971', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299681724036369968', 'ORDER_202408140957201541723600640154', 'ASRS-#1', '115000226284', 'KAMW13MI2', '8T4121', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299701724036369970', 'ORDER_202408140957202321723600640232', 'ASRS-#1', '115000226284', 'KASW02NF4', '8T4192', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299721724036369972', 'ORDER_202408140957199661723600639966', 'ASRS-#1', '115000226284', 'KASW02NF5', '1984777', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299741724036369974', 'ORDER_202408140957200001723600640000', 'ASRS-#1', '115000226284', 'KASW02NF5', '2048000', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299761724036369976', 'ORDER_202408140957200071723600640007', 'ASRS-#1', '115000226284', 'KASW02NF5', '3445675', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299791724036369979', 'ORDER_202408140957200321723600640032', 'ASRS-#1', '115000226284', 'KASW02NF5', '3B8489', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299811724036369981', 'ORDER_202408140957200631723600640063', 'ASRS-#1', '115000226284', 'KASW02NF5', '4792171', 0.0000, 8.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299831724036369983', 'ORDER_202408140957201281723600640128', 'ASRS-#1', '115000226284', 'KASW02NF5', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299861724036369986', 'ORDER_202408140957201821723600640182', 'ASRS-#1', '115000226284', 'KASW02NF5', '8T4121', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299891724036369989', 'ORDER_202408140957201261723600640126', 'ASRS-#1', '115000226284', 'KASW02NF6', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299901724036369990', 'ORDER_202408140957201731723600640173', 'ASRS-#1', '115000226284', 'KASW02NF6', '8T4121', 0.0000, 8.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299911724036369991', 'ORDER_202408140957202311723600640231', 'ASRS-#1', '115000226284', 'KASW02NF6', '8T4192', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299941724036369994', 'ORDER_202408140957199401723600639940', 'ASRS-#1', '115000226284', 'KASW01EF6', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299961724036369996', 'ORDER_202408140957199971723600639997', 'ASRS-#1', '115000226284', 'KASW01EF6', '2048000', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059299991724036369999', 'ORDER_202408140957200911723600640091', 'ASRS-#1', '115000226284', 'KASW01EF6', '4883971', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300011724036370001', 'ORDER_202408140957195501723600639550', 'ASRS-#1', '115000226285', 'KASW01EF5', '0672551', 0.0000, 7.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300031724036370003', 'ORDER_202408140957195841723600639584', 'ASRS-#1', '115000226285', 'KASW01EF5', '1984777', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300041724036370004', 'ORDER_202408140957196181723600639618', 'ASRS-#1', '115000226285', 'KASW01EF5', '2006345', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300061724036370006', 'ORDER_202408140957196261723600639626', 'ASRS-#1', '115000226285', 'KASW01EF5', '2048000', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300101724036370010', 'ORDER_202408140957197501723600639750', 'ASRS-#1', '115000226285', 'KASW01EF5', '4792172', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300121724036370012', 'ORDER_202408140957199391723600639939', 'ASRS-#1', '115000226284', 'KASW01EF4', '0672551', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300151724036370015', 'ORDER_202408140957199591723600639959', 'ASRS-#1', '115000226284', 'KASW01EF4', '1305300', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300191724036370019', 'ORDER_202408140957200801723600640080', 'ASRS-#1', '115000226284', 'KASW01EF4', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300211724036370021', 'ORDER_202408140957199331723600639933', 'ASRS-#1', '115000226284', 'KASW01EF3', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300231724036370023', 'ORDER_202408140957200011723600640001', 'ASRS-#1', '115000226284', 'KASW01EF3', '2048000', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300251724036370025', 'ORDER_202408140957200301723600640030', 'ASRS-#1', '115000226284', 'KASW01EF3', '3B8489', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300281724036370028', 'ORDER_202408140957200811723600640081', 'ASRS-#1', '115000226284', 'KASW01EF3', '4792172', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300311724036370031', 'ORDER_202408140957200981723600640098', 'ASRS-#1', '115000226284', 'KASW01EF3', '4883971', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300331724036370033', 'ORDER_202408140957202111723600640211', 'ASRS-#1', '115000226284', 'KASW01EF3', '8T4186', 0.0000, 6.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300351724036370035', 'ORDER_202408140957199631723600639963', 'ASRS-#1', '115000226284', 'KAMW07LA1', '1984777', 0.0000, 6.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300371724036370037', 'ORDER_202408140957198331723600639833', 'ASRS-#1', '115000226285', 'KASW01EF2', '8T1889', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300391724036370039', 'ORDER_202408140957198501723600639850', 'ASRS-#1', '115000226285', 'KASW01EF2', '8T1890', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300411724036370041', 'ORDER_202408140957199611723600639961', 'ASRS-#1', '115000226284', 'KAMW07LA2', '1305300', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300431724036370043', 'ORDER_202408140957199771723600639977', 'ASRS-#1', '115000226284', 'KAMW07LA2', '1984777', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300461724036370046', 'ORDER_202408140957201291723600640129', 'ASRS-#1', '115000226284', 'KAMW07LA2', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300481724036370048', 'ORDER_202408140957201921723600640192', 'ASRS-#1', '115000226284', 'KAMW07LA2', '8T4121', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300501724036370050', 'ORDER_202408140957199571723600639957', 'ASRS-#1', '115000226284', 'KASW01EF1', '1305300', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300521724036370052', 'ORDER_202408140957199931723600639993', 'ASRS-#1', '115000226284', 'KASW01EF1', '2048000', 0.0000, 9.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300541724036370054', 'ORDER_202408140957200861723600640086', 'ASRS-#1', '115000226284', 'KASW01EF1', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300561724036370056', 'ORDER_202408140957200921723600640092', 'ASRS-#1', '115000226284', 'KASW01EF1', '4883971', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300591724036370059', 'ORDER_202408140957201461723600640146', 'ASRS-#1', '115000226284', 'KASW01EF1', '8T1889', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300621724036370062', 'ORDER_202408140957201511723600640151', 'ASRS-#1', '115000226284', 'KASW01EF1', '8T1890', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300651724036370065', 'ORDER_202408140957200851723600640085', 'ASRS-#1', '115000226284', 'KAMW07LA3', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300681724036370068', 'ORDER_202408140957200931723600640093', 'ASRS-#1', '115000226284', 'KAMW07LA3', '4883971', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300701724036370070', 'ORDER_202408140957196801723600639680', 'ASRS-#1', '115000226285', 'KAMW14MIA', '3B8489', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300721724036370072', 'ORDER_202408140957199371723600639937', 'ASRS-#1', '115000226284', 'KAMW05MI1', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300731724036370073', 'ORDER_202408140957199851723600639985', 'ASRS-#1', '115000226284', 'KAMW05MI1', '2006345', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300761724036370076', 'ORDER_202408140957200091723600640009', 'ASRS-#1', '115000226284', 'KAMW05MI1', '3445675', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300791724036370079', 'ORDER_202408140957200581723600640058', 'ASRS-#1', '115000226284', 'KAMW05MI1', '4792171', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300821724036370082', 'ORDER_202408140957201881723600640188', 'ASRS-#1', '115000226284', 'KAMW05MI1', '8T4121', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300851724036370085', 'ORDER_202408140957200211723600640021', 'ASRS-#1', '115000226284', 'KAMW05MI2', '3979301', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300871724036370087', 'ORDER_202408140957200471723600640047', 'ASRS-#1', '115000226284', 'KAMW05MI2', '4792171', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300891724036370089', 'ORDER_202408140957201051723600640105', 'ASRS-#1', '115000226284', 'KAMW05MI2', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300911724036370091', 'ORDER_202408140957202041723600640204', 'ASRS-#1', '115000226284', 'KAMW05MI2', '8T4121', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300921724036370092', 'ORDER_202408140957202291723600640229', 'ASRS-#1', '115000226284', 'KAMW05MI2', '8T4192', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300941724036370094', 'ORDER_202408140957202071723600640207', 'ASRS-#1', '115000226284', 'KAMW01MI1', '8T4183', 0.0000, 6.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300971724036370097', 'ORDER_202408140957199311723600639931', 'ASRS-#1', '115000226284', 'KAMW01MI2', '0672551', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059300991724036370099', 'ORDER_202408140957200401723600640040', 'ASRS-#1', '115000226284', 'KAMW01MI2', '4792171', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301021724036370102', 'ORDER_202408140957200761723600640076', 'ASRS-#1', '115000226284', 'KAMW01MI2', '4792172', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301051724036370105', 'ORDER_202408140957200901723600640090', 'ASRS-#1', '115000226284', 'KAMW08MI1', '4883971', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301071724036370107', 'ORDER_202408140957200941723600640094', 'ASRS-#1', '115000226284', 'KAMW08MI3', '4883971', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301101724036370110', 'ORDER_202408140957199431723600639943', 'ASRS-#1', '115000226284', 'KAMW06MI1', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301111724036370111', 'ORDER_202408140957200111723600640011', 'ASRS-#1', '115000226284', 'KAMW06MI1', '3445675', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301131724036370113', 'ORDER_202408140957201891723600640189', 'ASRS-#1', '115000226284', 'KAMW06MI1', '8T4121', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301151724036370115', 'ORDER_202408140957199641723600639964', 'ASRS-#1', '115000226284', 'KAMW08MI2', '1984777', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301171724036370117', 'ORDER_202408140957200541723600640054', 'ASRS-#1', '115000226284', 'KAMW03ET4', '4792171', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301201724036370120', 'ORDER_202408140957200831723600640083', 'ASRS-#1', '115000226284', 'KAMW03ET4', '4792172', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301221724036370122', 'ORDER_202408140957199341723600639934', 'ASRS-#1', '115000226284', 'KAMW03ET2', '0672551', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301251724036370125', 'ORDER_202408140957200101723600640010', 'ASRS-#1', '115000226284', 'KAMW03ET2', '3445675', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301281724036370128', 'ORDER_202408140957200641723600640064', 'ASRS-#1', '115000226284', 'KAMW03ET2', '4792171', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301301724036370130', 'ORDER_202408140957200791723600640079', 'ASRS-#1', '115000226284', 'KAMW03ET2', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301331724036370133', 'ORDER_202408140957201191723600640119', 'ASRS-#1', '115000226284', 'KAMW03ET2', '5621927', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301341724036370134', 'ORDER_202408140957201401723600640140', 'ASRS-#1', '115000226284', 'KAMW03ET2', '5P4116', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301371724036370137', 'ORDER_202408140957201841723600640184', 'ASRS-#1', '115000226284', 'KAMW03ET2', '8T4121', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301401724036370140', 'ORDER_202408140957200971723600640097', 'ASRS-#1', '115000226284', 'KAMW16MI1', '4883971', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301421724036370142', 'ORDER_202408140957199471723600639947', 'ASRS-#1', '115000226284', 'KAMW03ET3', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301451724036370145', 'ORDER_202408140957199861723600639986', 'ASRS-#1', '115000226284', 'KAMW03ET3', '2006345', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301471724036370147', 'ORDER_202408140957200671723600640067', 'ASRS-#1', '115000226284', 'KAMW03ET3', '4792171', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301491724036370149', 'ORDER_202408140957201861723600640186', 'ASRS-#1', '115000226284', 'KAMW03ET3', '8T4121', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301521724036370152', 'ORDER_202408140957197881723600639788', 'ASRS-#1', '115000226285', 'KAMW16MI2', '4883971', 0.0000, 7.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301541724036370154', 'ORDER_202408140957199531723600639953', 'ASRS-#1', '115000226284', 'KASW02NF1', '1305300', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301561724036370156', 'ORDER_202408140957200061723600640006', 'ASRS-#1', '115000226284', 'KASW02NF1', '3445675', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301591724036370159', 'ORDER_202408140957200291723600640029', 'ASRS-#1', '115000226284', 'KASW02NF1', '3B8489', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301621724036370162', 'ORDER_202408140957200561723600640056', 'ASRS-#1', '115000226284', 'KASW02NF1', '4792171', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301631724036370163', 'ORDER_202408140957200781723600640078', 'ASRS-#1', '115000226284', 'KASW02NF1', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301651724036370165', 'ORDER_202408140957201221723600640122', 'ASRS-#1', '115000226284', 'KASW02NF1', '5621927', 0.0000, 9.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301671724036370167', 'ORDER_202408140957201591723600640159', 'ASRS-#1', '115000226284', 'KASW02NF1', '8T4121', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301691724036370169', 'ORDER_202408140957202121723600640212', 'ASRS-#1', '115000226284', 'KASW02NF1', '8T4186', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301721724036370172', 'ORDER_202408140957198071723600639807', 'ASRS-#1', '115000226285', 'KASW02NF2', '5621927', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301731724036370173', 'ORDER_202408140957199141723600639914', 'ASRS-#1', '115000226285', 'KASW02NF2', '8T4192', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301751724036370175', 'ORDER_202408140957199191723600639919', 'ASRS-#1', '115000226284', 'KASW02NF3', '0672551', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301781724036370178', 'ORDER_202408140957199551723600639955', 'ASRS-#1', '115000226284', 'KASW02NF3', '1305300', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301801724036370180', 'ORDER_202408140957200371723600640037', 'ASRS-#1', '115000226284', 'KASW02NF3', '4792171', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301811724036370181', 'ORDER_202408140957200771723600640077', 'ASRS-#1', '115000226284', 'KASW02NF3', '4792172', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301831724036370183', 'ORDER_202408140957201231723600640123', 'ASRS-#1', '115000226284', 'KASW02NF3', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301861724036370186', 'ORDER_202408140957201651723600640165', 'ASRS-#1', '115000226284', 'KASW02NF3', '8T4121', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301871724036370187', 'ORDER_202408140957202391723600640239', 'ASRS-#1', '115000226284', 'KAMW04MI3', '8T4192', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301901724036370190', 'ORDER_202408140957199881723600639988', 'ASRS-#1', '115000226284', 'KAMW04MI2', '2006345', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301931724036370193', 'ORDER_202408140957201411723600640141', 'ASRS-#1', '115000226284', 'KAMW04MI2', '5P4116', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301951724036370195', 'ORDER_202408140957199361723600639936', 'ASRS-#1', '115000226284', 'KAMW04MI1', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301971724036370197', 'ORDER_202408140957199511723600639951', 'ASRS-#1', '115000226284', 'KAMW04MI1', '1305300', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059301991724036370199', 'ORDER_202408140957200451723600640045', 'ASRS-#1', '115000226284', 'KAMW04MI1', '4792171', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302011724036370201', 'ORDER_202408140957201201723600640120', 'ASRS-#1', '115000226284', 'KAMW04MI1', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302041724036370204', 'ORDER_202408140957201871723600640187', 'ASRS-#1', '115000226284', 'KAMW04MI1', '8T4121', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302061724036370206', 'ORDER_202408140957202051723600640205', 'ASRS-#1', '115000226284', 'KAMW06MI2', '8T4183', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302081724036370208', 'ORDER_202408140957202101723600640210', 'ASRS-#1', '115000226284', 'KAMW06MI2', '8T4186', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302091724036370209', 'ORDER_202408140957200881723600640088', 'ASRS-#1', '115000226284', 'KAMW06MI3', '4883971', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302121724036370212', 'ORDER_202408140957201241723600640124', 'ASRS-#1', '115000226284', 'KAMW02MI2', '5621927', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302131724036370213', 'ORDER_202408140957199451723600639945', 'ASRS-#1', '115000226284', 'KAMW06MI4', '0672551', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302151724036370215', 'ORDER_202408140957200131723600640013', 'ASRS-#1', '115000226284', 'KAMW06MI4', '3445675', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302181724036370218', 'ORDER_202408140957200661723600640066', 'ASRS-#1', '115000226284', 'KAMW06MI4', '4792171', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302211724036370221', 'ORDER_202408140957200841723600640084', 'ASRS-#1', '115000226284', 'KAMW06MI4', '4792172', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302241724036370224', 'ORDER_202408140957201251723600640125', 'ASRS-#1', '115000226284', 'KAMW06MI4', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059302261724036370226', 'ORDER_202408140957201911723600640191', 'ASRS-#1', '115000226284', 'KAMW06MI4', '8T4121', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304011724036370401', 'ORDER_202408140957200261723600640026', 'ASRS-#2', '115000226284', 'KWLSOHF2A', '3979301', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304041724036370404', 'ORDER_202408140957200201723600640020', 'ASRS-#2', '115000226284', 'KWLSOHF4B', '3445675', 0.0000, 8.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304071724036370407', 'ORDER_202408140957200231723600640023', 'ASRS-#2', '115000226284', 'KWLSOHF4B', '3979301', 0.0000, 8.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304111724036370411', 'ORDER_202408140957201331723600640133', 'ASRS-#2', '115000226284', 'KWLSOHF4B', '5621927', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304121724036370412', 'ORDER_202408140957200621723600640062', 'ASRS-#2', '115000226284', 'KASW12MI3', '4792171', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304151724036370415', 'ORDER_202408140957199601723600639960', 'ASRS-#2', '115000226284', 'KASW12MI1', '1305300', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304171724036370417', 'ORDER_202408140957194971723600639497', 'ASRS-#2', '115000226286', 'KWLSOHL01', '8T4186', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304181724036370418', 'ORDER_202408140957201641723600640164', 'ASRS-#2', '115000226284', 'KASW03VAA', '8T4121', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304211724036370421', 'ORDER_202408140957202251723600640225', 'ASRS-#2', '115000226284', 'KASW03VAA', '8T4192', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304221724036370422', 'ORDER_202408140957194731723600639473', 'ASRS-#2', '115000226286', 'KWLSOHL03', '8T4183', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304261724036370426', 'ORDER_202408140957195391723600639539', 'ASRS-#2', '115000226286', 'KWLSOHL03', '8T4192', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304281724036370428', 'ORDER_202408140957198791723600639879', 'ASRS-#2', '115000226285', 'KWLSOHL02', '8T4121', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304291724036370429', 'ORDER_202408140957199181723600639918', 'ASRS-#2', '115000226284', 'KWLSOHL04', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304311724036370431', 'ORDER_202408140957200191723600640019', 'ASRS-#2', '115000226284', 'KWLSOHL04', '3445675', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304341724036370434', 'ORDER_202408140957200681723600640068', 'ASRS-#2', '115000226284', 'KWLSOHL04', '4792171', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304361724036370436', 'ORDER_202408140957200871723600640087', 'ASRS-#2', '115000226284', 'KWLSOHL04', '4792172', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304371724036370437', 'ORDER_202408140957202021723600640202', 'ASRS-#2', '115000226284', 'KWLSOHL04', '8T4121', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304381724036370438', 'ORDER_202408140957201351723600640135', 'ASRS-#2', '115000226284', 'KWLSOHDEF', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304401724036370440', 'ORDER_202408140957201041723600640104', 'ASRS-#2', '115000226284', 'KASW05MIA', '5621927', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304441724036370444', 'ORDER_202408140957201561723600640156', 'ASRS-#2', '115000226284', 'KASW05MIA', '8T4121', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304461724036370446', 'ORDER_202408140957197101723600639710', 'ASRS-#2', '115000226285', 'KWLSOHFEA', '4792171', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304471724036370447', 'ORDER_202408140957198761723600639876', 'ASRS-#2', '115000226285', 'KWLSOHFEA', '8T4121', 0.0000, 8.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304491724036370449', 'ORDER_202408140957199081723600639908', 'ASRS-#2', '115000226285', 'KWLSOHFEA', '8T4186', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304511724036370451', 'ORDER_202408140957200521723600640052', 'ASRS-#2', '115000226284', 'KASW09MI2', '4792171', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304531724036370453', 'ORDER_202408140957202151723600640215', 'ASRS-#2', '115000226284', 'KASW09MI2', '8T4186', 0.0000, 6.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304551724036370455', 'ORDER_202408140957200271723600640027', 'ASRS-#2', '115000226284', 'KWLSOHF3B', '3979301', 0.0000, 12.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304571724036370457', 'ORDER_202408140957196341723600639634', 'ASRS-#2', '115000226285', 'KASW09MI1', '2048000', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304591724036370459', 'ORDER_202408140957197411723600639741', 'ASRS-#2', '115000226285', 'KASW09MI1', '4792171', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304611724036370461', 'ORDER_202408140957198401723600639840', 'ASRS-#2', '115000226285', 'KASW13MI2', '8T1889', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304631724036370463', 'ORDER_202408140957198561723600639856', 'ASRS-#2', '115000226285', 'KASW13MI2', '8T1890', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304641724036370464', 'ORDER_202408140957200421723600640042', 'ASRS-#2', '115000226284', 'KWLSOHFNA', '4792171', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304661724036370466', 'ORDER_202408140957199901723600639990', 'ASRS-#2', '115000226284', 'KASW09MI3', '2006345', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304681724036370468', 'ORDER_202408140957200531723600640053', 'ASRS-#2', '115000226284', 'KASW09MI3', '4792171', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304691724036370469', 'ORDER_202408140957200351723600640035', 'ASRS-#2', '115000226284', 'KASW13MI1', '3B8489', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304711724036370471', 'ORDER_202408140957202411723600640241', 'ASRS-#2', '115000226284', 'KASW13MI1', '8T4192', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304721724036370472', 'ORDER_202408140957199561723600639956', 'ASRS-#2', '115000226284', 'KASW15MI1', '1305300', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304761724036370476', 'ORDER_202408140957199831723600639983', 'ASRS-#2', '115000226284', 'KASW15MI1', '1984777', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304801724036370480', 'ORDER_202408140957199911723600639991', 'ASRS-#2', '115000226284', 'KASW15MI1', '2048000', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304821724036370482', 'ORDER_202408140957200051723600640005', 'ASRS-#2', '115000226284', 'KASW15MI1', '3445675', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304861724036370486', 'ORDER_202408140957200221723600640022', 'ASRS-#2', '115000226284', 'KASW15MI1', '3979301', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304891724036370489', 'ORDER_202408140957200601723600640060', 'ASRS-#2', '115000226284', 'KASW15MI1', '4792171', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304921724036370492', 'ORDER_202408140957201321723600640132', 'ASRS-#2', '115000226284', 'KASW15MI1', '5621927', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304931724036370493', 'ORDER_202408140957201371723600640137', 'ASRS-#2', '115000226284', 'KASW15MI1', '5P4116', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059304971724036370497', 'ORDER_202408140957201671723600640167', 'ASRS-#2', '115000226284', 'KASW15MI1', '8T4121', 0.0000, 7.0000, 0, 2, '2024-08-19 10:59:30', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305001724036370500', 'ORDER_202408140957202241723600640224', 'ASRS-#2', '115000226284', 'KASW15MI1', '8T4186', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305021724036370502', 'ORDER_202408140957199481723600639948', 'ASRS-#2', '115000226284', 'KASW10MIA', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305051724036370505', 'ORDER_202408140957199821723600639982', 'ASRS-#2', '115000226284', 'KASW10MIA', '1984777', 0.0000, 10.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305091724036370509', 'ORDER_202408140957199961723600639996', 'ASRS-#2', '115000226284', 'KASW10MIA', '2048000', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305111724036370511', 'ORDER_202408140957200171723600640017', 'ASRS-#2', '115000226284', 'KASW10MIA', '3445675', 0.0000, 6.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305141724036370514', 'ORDER_202408140957200411723600640041', 'ASRS-#2', '115000226284', 'KASW10MIA', '4792171', 0.0000, 6.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305161724036370516', 'ORDER_202408140957200731723600640073', 'ASRS-#2', '115000226284', 'KASW10MIA', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305181724036370518', 'ORDER_202408140957201391723600640139', 'ASRS-#2', '115000226284', 'KASW10MIA', '5P4116', 0.0000, 6.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305201724036370520', 'ORDER_202408140957201681723600640168', 'ASRS-#2', '115000226284', 'KASW10MIA', '8T4121', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305221724036370522', 'ORDER_202408140957200141723600640014', 'ASRS-#2', '115000226284', 'KASW06ET2', '3445675', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305231724036370523', 'ORDER_202408140957200591723600640059', 'ASRS-#2', '115000226284', 'KASW06ET2', '4792171', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305251724036370525', 'ORDER_202408140957200741723600640074', 'ASRS-#2', '115000226284', 'KASW06ET2', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305271724036370527', 'ORDER_202408140957200991723600640099', 'ASRS-#2', '115000226284', 'KASW06ET2', '4883971', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305291724036370529', 'ORDER_202408140957201301723600640130', 'ASRS-#2', '115000226284', 'KASW06ET2', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305311724036370531', 'ORDER_202408140957202081723600640208', 'ASRS-#2', '115000226284', 'KASW06ET2', '8T4183', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305341724036370534', 'ORDER_202408140957199951723600639995', 'ASRS-#2', '115000226284', 'KASW06ET1', '2048000', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305351724036370535', 'ORDER_202408140957200551723600640055', 'ASRS-#2', '115000226284', 'KASW06ET1', '4792171', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305391724036370539', 'ORDER_202408140957200751723600640075', 'ASRS-#2', '115000226284', 'KASW06ET1', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305421724036370542', 'ORDER_202408140957201101723600640110', 'ASRS-#2', '115000226284', 'KASW06ET1', '5621927', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305451724036370545', 'ORDER_202408140957201381723600640138', 'ASRS-#2', '115000226284', 'KASW06ET1', '5P4116', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305471724036370547', 'ORDER_202408140957201451723600640145', 'ASRS-#2', '115000226284', 'KASW06ET1', '8T1889', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305491724036370549', 'ORDER_202408140957201491723600640149', 'ASRS-#2', '115000226284', 'KASW06ET1', '8T1890', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305521724036370552', 'ORDER_202408140957200501723600640050', 'ASRS-#2', '115000226284', 'KASW06ET4', '4792171', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305551724036370555', 'ORDER_202408140957201091723600640109', 'ASRS-#2', '115000226284', 'KASW06ET4', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305571724036370557', 'ORDER_202408140957200481723600640048', 'ASRS-#2', '115000226284', 'KASW06ET3', '4792171', 0.0000, 6.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305591724036370559', 'ORDER_202408140957201001723600640100', 'ASRS-#2', '115000226284', 'KASW06ET3', '4883971', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305611724036370561', 'ORDER_202408140957201071723600640107', 'ASRS-#2', '115000226284', 'KASW06ET3', '5621927', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305631724036370563', 'ORDER_202408140957202261723600640226', 'ASRS-#2', '115000226284', 'KASW06ET3', '8T4192', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305711724036370571', 'ORDER_202408140957199501723600639950', 'ASRS-#2', '115000226284', 'KASW06ET6', '0672551', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305731724036370573', 'ORDER_202408140957199891723600639989', 'ASRS-#2', '115000226284', 'KASW06ET6', '2006345', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305741724036370574', 'ORDER_202408140957200161723600640016', 'ASRS-#2', '115000226284', 'KASW06ET6', '3445675', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305751724036370575', 'ORDER_202408140957200491723600640049', 'ASRS-#2', '115000226284', 'KASW06ET6', '4792171', 0.0000, 3.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305771724036370577', 'ORDER_202408140957200691723600640069', 'ASRS-#2', '115000226284', 'KASW04MIA', '4792171', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305791724036370579', 'ORDER_202408140957196021723600639602', 'ASRS-#2', '115000226285', 'KASW06ET5', '2006345', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305811724036370581', 'ORDER_202408140957196401723600639640', 'ASRS-#2', '115000226285', 'KASW06ET5', '2048000', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305821724036370582', 'ORDER_202408140957196911723600639691', 'ASRS-#2', '115000226285', 'KASW06ET5', '4792171', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305841724036370584', 'ORDER_202408140957197591723600639759', 'ASRS-#2', '115000226285', 'KASW06ET5', '4792172', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305871724036370587', 'ORDER_202408140957198371723600639837', 'ASRS-#2', '115000226285', 'KASW06ET5', '8T1889', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305901724036370590', 'ORDER_202408140957198531723600639853', 'ASRS-#2', '115000226285', 'KASW06ET5', '8T1890', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305931724036370593', 'ORDER_202408140957198981723600639898', 'ASRS-#2', '115000226285', 'KASW06ET5', '8T4183', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305951724036370595', 'ORDER_202408140957200361723600640036', 'ASRS-#2', '115000226284', 'KASW14MIA', '3B8489', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305971724036370597', 'ORDER_202408140957200391723600640039', 'ASRS-#2', '115000226284', 'KASW14MIA', '4792171', 0.0000, 5.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059305991724036370599', 'ORDER_202408140957201061723600640106', 'ASRS-#2', '115000226284', 'KASW14MIA', '5621927', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306011724036370601', 'ORDER_202408140957201441723600640144', 'ASRS-#2', '115000226284', 'KASW14MIA', '8T1889', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306041724036370604', 'ORDER_202408140957201481723600640148', 'ASRS-#2', '115000226284', 'KASW14MIA', '8T1890', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306071724036370607', 'ORDER_202408140957201581723600640158', 'ASRS-#2', '115000226284', 'KASW14MIA', '8T4121', 0.0000, 9.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306091724036370609', 'ORDER_202408140957202161723600640216', 'ASRS-#2', '115000226284', 'KASW14MIA', '8T4186', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306111724036370611', 'ORDER_202408140957202281723600640228', 'ASRS-#2', '115000226284', 'KASW14MIA', '8T4192', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306141724036370614', 'ORDER_202408140957199801723600639980', 'ASRS-#2', '115000226284', 'KASW08LAA', '1984777', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306151724036370615', 'ORDER_202408140957200021723600640002', 'ASRS-#2', '115000226284', 'KASW08LAA', '2048000', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306161724036370616', 'ORDER_202408140957200341723600640034', 'ASRS-#2', '115000226284', 'KASW08LAA', '3B8489', 0.0000, 9.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306181724036370618', 'ORDER_202408140957200701723600640070', 'ASRS-#2', '115000226284', 'KASW08LAA', '4792171', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306201724036370620', 'ORDER_202408140957201021723600640102', 'ASRS-#2', '115000226284', 'KASW08LAA', '4883971', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306221724036370622', 'ORDER_202408140957201311723600640131', 'ASRS-#2', '115000226284', 'KASW08LAA', '5621927', 0.0000, 10.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306241724036370624', 'ORDER_202408140957201471723600640147', 'ASRS-#2', '115000226284', 'KASW08LAA', '8T1889', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306261724036370626', 'ORDER_202408140957201521723600640152', 'ASRS-#2', '115000226284', 'KASW08LAA', '8T1890', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306281724036370628', 'ORDER_202408140957202131723600640213', 'ASRS-#2', '115000226284', 'KASW08LAA', '8T4186', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306291724036370629', 'ORDER_202408140957199841723600639984', 'ASRS-#2', '115000226284', 'KASW16MIA', '1984777', 0.0000, 4.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306311724036370631', 'ORDER_202408140957201031723600640103', 'ASRS-#2', '115000226284', 'KASW16MIA', '4883971', 0.0000, 1.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); +INSERT INTO `tbl_app_work_flow` VALUES ('WORKFLOW_202408191059306341724036370634', 'ORDER_202408140957201431723600640143', 'ASRS-#2', '115000226284', 'KASW16MIA', '5P4116', 0.0000, 2.0000, 0, 2, '2024-08-19 10:59:31', '2024-08-19 11:00:16', '库存等原因,系统自动完成'); -- ---------------------------- -- Table structure for tbl_app_work_station_config @@ -14994,11 +19727,77 @@ CREATE TABLE `tbl_app_work_station_config` ( -- ---------------------------- -- 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'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211411724056461141', 'ASRS-#1', 'KAMW01MI1', 'MWL', 'AMW01', 'AMW01MI1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211431724056461143', 'ASRS-#1', 'KAMW01MI2', 'MWL', 'AMW01', 'AMW01MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211441724056461144', 'ASRS-#1', 'KAMW02MI2', 'MWL', 'AMW02', 'AMW02MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211461724056461146', 'ASRS-#1', 'KAMW03ET2', 'MWL', 'AMW03', 'AMW03ET2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211471724056461147', 'ASRS-#1', 'KAMW03ET3', 'MWL', 'AMW03', 'AMW03ET3', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211481724056461148', 'ASRS-#1', 'KAMW03ET4', 'MWL', 'AMW03', 'AMW03ET4', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211491724056461149', 'ASRS-#1', 'KAMW04MI1', 'MWL', 'AMW04', 'AMW04MI1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211501724056461150', 'ASRS-#1', 'KAMW04MI2', 'MWL', 'AMW04', 'AMW04MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211511724056461151', 'ASRS-#1', 'KAMW04MI3', 'MWL', 'AMW04', 'AMW04MI3', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211671724056461167', 'ASRS-#1', 'KAMW05MI1', 'MWL', 'AMW05', 'AMW05MI1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211691724056461169', 'ASRS-#1', 'KAMW05MI2', 'MWL', 'AMW05', 'AMW05MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211871724056461187', 'ASRS-#1', 'KAMW06MI1', 'MWL', 'AMW06', 'AMW06MI1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211881724056461188', 'ASRS-#1', 'KAMW06MI2', 'MWL', 'AMW06', 'AMW06MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211891724056461189', 'ASRS-#1', 'KAMW06MI3', 'MWL', 'AMW06', 'AMW06MI3', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211901724056461190', 'ASRS-#1', 'KAMW06MI4', 'MWL', 'AMW06', 'AMW06MI4', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634211931724056461193', 'ASRS-#1', 'KAMW07LA1', 'MWL', 'AMW07', 'AMW07LA1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212091724056461209', 'ASRS-#1', 'KAMW07LA2', 'MWL', 'AMW07', 'AMW07LA2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212101724056461210', 'ASRS-#1', 'KAMW07LA3', 'MWL', 'AMW07', 'AMW07LA3', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212261724056461226', 'ASRS-#1', 'KAMW08MI1', 'MWL', 'AMW08', 'AMW08MI1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212411724056461241', 'ASRS-#1', 'KAMW08MI2', 'MWL', 'AMW08', 'AMW08MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212431724056461243', 'ASRS-#1', 'KAMW08MI3', 'MWL', 'AMW08', 'AMW08MI3', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212581724056461258', 'ASRS-#1', 'KAMW09MI1', 'MWL', 'AMW09', 'AMW09MI1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212601724056461260', 'ASRS-#1', 'KAMW09MI2', 'MWL', 'AMW09', 'AMW09MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212621724056461262', 'ASRS-#1', 'KAMW13MI2', 'MWL', 'AMW13', 'AMW13MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212631724056461263', 'ASRS-#1', 'KAMW13MI3', 'MWL', 'AMW13', 'AMW13MI3', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212781724056461278', 'ASRS-#1', 'KAMW14MIA', 'MWL', 'AMW14', 'AMW14MIA', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212801724056461280', 'ASRS-#1', 'KAMW16MI1', 'MWL', 'AMW16', 'AMW16MI1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212961724056461296', 'ASRS-#1', 'KAMW16MI2', 'MWL', 'AMW16', 'AMW16MI2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212971724056461297', 'ASRS-#1', 'KASW01EF1', 'MWL', 'ASW01', 'ASW01-1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634212991724056461299', 'ASRS-#1', 'KASW01EF2', 'MWL', 'ASW01', 'ASW01-1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213161724056461316', 'ASRS-#1', 'KASW01EF3', 'MWL', 'ASW01', 'ASW01-1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213181724056461318', 'ASRS-#1', 'KASW01EF4', 'MWL', 'ASW01', 'ASW01-2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213341724056461334', 'ASRS-#1', 'KASW01EF5', 'MWL', 'ASW01', 'ASW01-2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213501724056461350', 'ASRS-#1', 'KASW01EF6', 'MWL', 'ASW01', 'ASW01-2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213511724056461351', 'ASRS-#1', 'KASW02NF1', 'MWL', 'ASW02', 'ASW02-1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213521724056461352', 'ASRS-#1', 'KASW02NF2', 'MWL', 'ASW02', 'ASW02-1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213691724056461369', 'ASRS-#1', 'KASW02NF3', 'MWL', 'ASW02', 'ASW02-1', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213701724056461370', 'ASRS-#1', 'KASW02NF4', 'MWL', 'ASW02', 'ASW02-2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213861724056461386', 'ASRS-#1', 'KASW02NF5', 'MWL', 'ASW02', 'ASW02-2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213881724056461388', 'ASRS-#1', 'KASW02NF6', 'MWL', 'ASW02', 'ASW02-2', 'B', 'K10-K11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213891724056461389', 'ASRS-#2', 'KASW03VAA', 'MWL', 'ASW03', 'ASW03VAA', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213901724056461390', 'ASRS-#2', 'KASW04MIA', 'MWL', 'ASW04', 'ASW04MIA', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213981724056461398', 'ASRS-#2', 'KASW05MIA', 'MWL', 'ASW05', 'ASW05MIA', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634213991724056461399', 'ASRS-#2', 'KASW06ET1', 'MWL', 'ASW06', 'ASW06-1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214041724056461404', 'ASRS-#2', 'KASW06ET2', 'MWL', 'ASW06', 'ASW06-1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214051724056461405', 'ASRS-#2', 'KASW06ET3', 'MWL', 'ASW06', 'ASW06-1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214121724056461412', 'ASRS-#2', 'KASW06ET4', 'MWL', 'ASW06', 'ASW06-2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214131724056461413', 'ASRS-#2', 'KASW06ET5', 'MWL', 'ASW06', 'ASW06-2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214191724056461419', 'ASRS-#2', 'KASW06ET6', 'MWL', 'ASW06', 'ASW06-2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214201724056461420', 'ASRS-#2', 'KASW08LAA', 'MWL', 'ASW08', 'ASW08LAA', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214211724056461421', 'ASRS-#2', 'KASW09MI1', 'MWL', 'ASW09', 'ASW09MI1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214231724056461423', 'ASRS-#2', 'KASW09MI2', 'MWL', 'ASW09', 'ASW09MI2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214271724056461427', 'ASRS-#2', 'KASW09MI3', 'MWL', 'ASW09', 'ASW09MI3', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214311724056461431', 'ASRS-#2', 'KASW10MIA', 'MWL', 'ASW10', 'ASW10MIA', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214321724056461432', 'ASRS-#2', 'KASW12MI1', 'MWL', 'ASW12', 'ASW12MI1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214331724056461433', 'ASRS-#2', 'KASW12MI3', 'MWL', 'ASW12', 'ASW12MI3', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214341724056461434', 'ASRS-#2', 'KASW13MI1', 'MWL', 'ASW13', 'ASW13MI1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214391724056461439', 'ASRS-#2', 'KASW13MI2', 'MWL', 'ASW13', 'ASW13MI2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214401724056461440', 'ASRS-#2', 'KASW14MIA', 'MWL', 'ASW14', 'ASW14MIA', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214411724056461441', 'ASRS-#2', 'KASW15MI1', 'MWL', 'ASW15', 'ASW15MI1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214421724056461442', 'ASRS-#2', 'KASW16MIA', 'MWL', 'ASW16', 'ASW16MIA', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214481724056461448', 'ASRS-#2', 'KWLSOHDEF', 'MWL', 'SOHDEF', 'SOH-1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214501724056461450', 'ASRS-#2', 'KWLSOHF2A', 'MWL', 'SOHF2A', 'SOH-1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214511724056461451', 'ASRS-#2', 'KWLSOHF3B', 'MWL', 'SOHF3B', 'SOH-1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214521724056461452', 'ASRS-#2', 'KWLSOHF4B', 'MWL', 'SOHF4B', 'SOH-1', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214531724056461453', 'ASRS-#2', 'KWLSOHFEA', 'MWL', 'SOHFEA', 'SOH-2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214541724056461454', 'ASRS-#2', 'KWLSOHFNA', 'MWL', 'SOHFNA', 'SOH-2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214551724056461455', 'ASRS-#2', 'KWLSOHL01', 'MWL', 'SOHL01', 'SOH-2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214561724056461456', 'ASRS-#2', 'KWLSOHL02', 'MWL', 'SOHL02', 'SOH-2', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214571724056461457', 'ASRS-#2', 'KWLSOHL03', 'MWL', 'SOHL03', 'SOH-3', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); +INSERT INTO `tbl_app_work_station_config` VALUES ('STATION-CONFIG_202408191634214581724056461458', 'ASRS-#2', 'KWLSOHL04', 'MWL', 'SOHL04', 'SOH-3', 'C', 'P10-P11', 0, '2024-08-19 16:35:01', '管理员'); -- ---------------------------- -- Table structure for tbl_app_work_summary @@ -15017,6 +19816,7 @@ CREATE TABLE `tbl_app_work_summary` ( `work_status` int NULL DEFAULT NULL COMMENT '工作状态', `lack_status` int NULL DEFAULT NULL COMMENT '缺件状态', `finish_time` datetime NULL DEFAULT NULL COMMENT '完成时间', + `op_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '操作用户', PRIMARY KEY (`work_flow_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; @@ -15045,13 +19845,16 @@ INSERT INTO `tbl_sys_config` VALUES (2, 'URL_NEW_DESTINATION', 'http://10.90.106 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 (6, 'START_WORK', '1', '3', '开始工作'); +INSERT INTO `tbl_sys_config` VALUES (7, 'SEND_TASK', '0', '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 (10, 'SLOC_FILTER_STRING', 'ASRS-00001', '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可接收最大任务数'); +INSERT INTO `tbl_sys_config` VALUES (13, 'LOG_DELETE_INTERVAL', '7', '1', '日志定期清理天数'); +INSERT INTO `tbl_sys_config` VALUES (14, 'RECORD_DELETE_INTERVAL', '180', '1', '普通记录定期清理天数'); +INSERT INTO `tbl_sys_config` VALUES (15, 'IMPORTANT_RECORD_DELETE_INTERVAL', '365', '1', '重要记录定期清理天数'); -- ---------------------------- -- Table structure for tbl_sys_log @@ -15072,6382 +19875,41 @@ CREATE TABLE `tbl_sys_log` ( -- ---------------------------- -- Records of tbl_sys_log -- ---------------------------- -INSERT INTO `tbl_sys_log` VALUES ('LOG_202407241046438111721789203811', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"\", \"standId\": \"# 1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数补全,料号必须可少\\\"}\"', '127.0.0.1', '2024-07-24 10:46:44', ''); -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', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408290837334711724891853471', '带密码登录', '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\\\":\\\"1-1\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-1-1\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-1\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-2\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-3\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-3\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-4\\\",\\\"labelName\\\":\\\"非计划领料\\\",\\\"path\\\":\\\"/clcNoPlan\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-5\\\",\\\"labelName\\\":\\\"需求看板\\\",\\\"path\\\":\\\"/clcKanban\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"2-1\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-2\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-3\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4-1\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-1\\\",\\\"labelName\\\":\\\"拣选任务\\\",\\\"path\\\":\\\"/pickTask\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-2\\\",\\\"labelName\\\":\\\"站台要料\\\",\\\"path\\\":\\\"/goodsToStation\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-3\\\",\\\"labelName\\\":\\\"工作流\\\",\\\"path\\\":\\\"/workFlow\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6-1\\\",\\\"labelName\\\":\\\"灯光监控\\\",\\\"path\\\":\\\"/eLocationMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-7\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-8\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-9\\\",\\\"labelName\\\":\\\"工作总结\\\",\\\"path\\\":\\\"/workSummary\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"3-1\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-2\\\",\\\"labelName\\\":\\\"灯光配置\\\",\\\"path\\\":\\\"/eLocationConfig\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-3\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-4\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-5\\\",\\\"labelName\\\":\\\"工站配置\\\",\\\"path\\\":\\\"/stationConfig\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"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-29 08:37:33', NULL); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408291318017381724908681738', '生成电子标签库位表', 'genELocations', '{\"isAsc\": false, \"areaId\": \"\", \"pageNo\": 0, \"sortBy\": \"\", \"taskId\": \"\", \"needNum\": null, \"pageSize\": 0, \"taskType\": null, \"userName\": \"\", \"vehicleNo\": \"\", \"confirmNum\": null, \"pickStatus\": 0, \"sequenceId\": 0, \"eLocationId\": \"\", \"workStation\": \"\", \"eLocationStatus\": 0}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"生成电子标签库位成功。\\\"}\"', '127.0.0.1', '2024-08-29 13:18:02', NULL); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301041284671724985688467', '带密码登录', '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\\\":\\\"1-1\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-1-1\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-1\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-2\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-3\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-3\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-4\\\",\\\"labelName\\\":\\\"非计划领料\\\",\\\"path\\\":\\\"/clcNoPlan\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-5\\\",\\\"labelName\\\":\\\"需求看板\\\",\\\"path\\\":\\\"/clcKanban\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"2-1\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-2\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-3\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4-1\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-1\\\",\\\"labelName\\\":\\\"拣选任务\\\",\\\"path\\\":\\\"/pickTask\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-2\\\",\\\"labelName\\\":\\\"站台要料\\\",\\\"path\\\":\\\"/goodsToStation\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-3\\\",\\\"labelName\\\":\\\"工作流\\\",\\\"path\\\":\\\"/workFlow\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6-1\\\",\\\"labelName\\\":\\\"灯光监控\\\",\\\"path\\\":\\\"/eLocationMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-7\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-8\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-9\\\",\\\"labelName\\\":\\\"工作总结\\\",\\\"path\\\":\\\"/workSummary\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"3-1\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-2\\\",\\\"labelName\\\":\\\"灯光配置\\\",\\\"path\\\":\\\"/eLocationConfig\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-3\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-4\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-5\\\",\\\"labelName\\\":\\\"工站配置\\\",\\\"path\\\":\\\"/stationConfig\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"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-30 10:41:28', NULL); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301043590841724985839084', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"DBS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723438228425\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121250300641723438230064\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:50:30\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437907216\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121245098861723437909886\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:45:10\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437817492\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121243401411723437820141\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:43:40\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":1,\\\"total\\\":3}}\"', '127.0.0.1', '2024-08-30 10:43:59', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301100335261724986833526', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"DBS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724986134625\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301048555131724986135513\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:48:56\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724985843967\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301044069391724985846939\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:44:07\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723438228425\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121250300641723438230064\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:50:30\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437907216\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121245098861723437909886\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:45:10\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437817492\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121243401411723437820141\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:43:40\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":1,\\\"total\\\":5}}\"', '127.0.0.1', '2024-08-30 11:00:34', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301103240041724987004004', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"DBS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724986134625\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301048555131724986135513\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:48:56\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724985843967\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301044069391724985846939\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:44:07\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723438228425\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121250300641723438230064\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:50:30\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437907216\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121245098861723437909886\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:45:10\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437817492\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121243401411723437820141\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:43:40\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":1,\\\"total\\\":5}}\"', '127.0.0.1', '2024-08-30 11:03:24', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301107546481724987274648', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"DBS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724986134625\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301048555131724986135513\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:48:56\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724985843967\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301044069391724985846939\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:44:07\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723438228425\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121250300641723438230064\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:50:30\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437907216\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121245098861723437909886\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:45:10\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437817492\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121243401411723437820141\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:43:40\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":1,\\\"total\\\":5}}\"', '127.0.0.1', '2024-08-30 11:07:55', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301400462241724997646224', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"DBS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724986134625\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301048555131724986135513\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:48:56\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724985843967\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301044069391724985846939\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:44:07\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723438228425\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121250300641723438230064\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:50:30\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437907216\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121245098861723437909886\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:45:10\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437817492\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121243401411723437820141\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:43:40\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":1,\\\"total\\\":5}}\"', '127.0.0.1', '2024-08-30 14:00:46', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301401013401724997661340', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"ORDERS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600636937\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140957210931723600641093\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:57:21\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600544989\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140955483971723600548397\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:55:48\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600350285\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140952361551723600356155\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:52:36\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600289982\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140951338051723600293805\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:51:34\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599425592\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140937092281723599429228\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:37:09\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599079671\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140931261631723599086163\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:31:26\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598962188\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140929265621723598966562\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:29:27\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598848058\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140927317571723598851757\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:27:32\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598730763\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140925358011723598735801\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:25:36\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598582524\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140923074881723598587488\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:23:07\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":3,\\\"total\\\":22}}\"', '127.0.0.1', '2024-08-30 14:01:01', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301403115291724997791529', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"DBS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301400503171724997650317\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:00:50\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724986134625\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301048555131724986135513\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:48:56\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724985843967\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301044069391724985846939\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:44:07\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723438228425\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121250300641723438230064\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:50:30\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437907216\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121245098861723437909886\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:45:10\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437817492\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121243401411723437820141\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:43:40\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":1,\\\"total\\\":6}}\"', '127.0.0.1', '2024-08-30 14:03:12', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301405509841724997950984', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"ORDERS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402055611724997725561\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:06\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402008931724997720893\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:01\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600636937\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140957210931723600641093\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:57:21\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600544989\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140955483971723600548397\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:55:48\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600350285\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140952361551723600356155\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:52:36\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600289982\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140951338051723600293805\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:51:34\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599425592\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140937092281723599429228\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:37:09\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599079671\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140931261631723599086163\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:31:26\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598962188\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140929265621723598966562\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:29:27\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598848058\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140927317571723598851757\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:27:32\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":3,\\\"total\\\":24}}\"', '127.0.0.1', '2024-08-30 14:05:51', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301407357071724998055707', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"DBS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301400503171724997650317\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:00:50\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724986134625\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301048555131724986135513\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:48:56\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724985843967\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301044069391724985846939\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:44:07\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723438228425\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121250300641723438230064\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:50:30\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437907216\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121245098861723437909886\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:45:10\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437817492\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121243401411723437820141\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:43:40\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":1,\\\"total\\\":6}}\"', '127.0.0.1', '2024-08-30 14:07:36', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301409017031724998141703', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"ORDERS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402055611724997725561\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:06\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402008931724997720893\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:01\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600636937\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140957210931723600641093\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:57:21\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600544989\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140955483971723600548397\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:55:48\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600350285\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140952361551723600356155\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:52:36\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600289982\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140951338051723600293805\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:51:34\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599425592\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140937092281723599429228\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:37:09\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599079671\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140931261631723599086163\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:31:26\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598962188\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140929265621723598966562\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:29:27\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598848058\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140927317571723598851757\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:27:32\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":3,\\\"total\\\":24}}\"', '127.0.0.1', '2024-08-30 14:09:02', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301410056251724998205625', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"ORDERS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402055611724997725561\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:06\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402008931724997720893\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:01\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600636937\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140957210931723600641093\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:57:21\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600544989\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140955483971723600548397\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:55:48\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600350285\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140952361551723600356155\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:52:36\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600289982\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140951338051723600293805\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:51:34\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599425592\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140937092281723599429228\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:37:09\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599079671\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140931261631723599086163\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:31:26\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598962188\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140929265621723598966562\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:29:27\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598848058\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140927317571723598851757\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:27:32\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":3,\\\"total\\\":24}}\"', '127.0.0.1', '2024-08-30 14:10:06', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301410144751724998214475', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"ORDERS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1724998208705\\\",\\\"fileName\\\":\\\"8.16号测试3台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301410113241724998211324\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:10:11\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402055611724997725561\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:06\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402008931724997720893\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:01\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600636937\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140957210931723600641093\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:57:21\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600544989\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140955483971723600548397\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:55:48\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600350285\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140952361551723600356155\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:52:36\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600289982\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140951338051723600293805\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:51:34\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599425592\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140937092281723599429228\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:37:09\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599079671\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140931261631723599086163\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:31:26\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598962188\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140929265621723598966562\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:29:27\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":3,\\\"total\\\":25}}\"', '127.0.0.1', '2024-08-30 14:10:14', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301410347591724998234759', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"ORDERS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1724998208705\\\",\\\"fileName\\\":\\\"8.16号测试3台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301410113241724998211324\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:10:11\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402055611724997725561\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:06\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402008931724997720893\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:01\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600636937\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140957210931723600641093\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:57:21\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600544989\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140955483971723600548397\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:55:48\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600350285\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140952361551723600356155\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:52:36\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600289982\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140951338051723600293805\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:51:34\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599425592\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140937092281723599429228\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:37:09\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599079671\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140931261631723599086163\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:31:26\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598962188\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140929265621723598966562\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:29:27\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":3,\\\"total\\\":25}}\"', '127.0.0.1', '2024-08-30 14:10:35', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301411542891724998314289', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"ORDERS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1724998208705\\\",\\\"fileName\\\":\\\"8.16号测试3台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301410113241724998211324\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:10:11\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402055611724997725561\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:06\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301402008931724997720893\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:02:01\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600636937\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140957210931723600641093\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:57:21\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600544989\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140955483971723600548397\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:55:48\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600350285\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140952361551723600356155\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:52:36\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723600289982\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140951338051723600293805\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:51:34\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599425592\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140937092281723599429228\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:37:09\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723599079671\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140931261631723599086163\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:31:26\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"ORDERS\\\",\\\"fileId\\\":\\\"1723598962188\\\",\\\"fileName\\\":\\\"4.9号原始数据10台.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408140929265621723598966562\\\",\\\"uploadTime\\\":\\\"2024-08-14 09:29:27\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":3,\\\"total\\\":25}}\"', '127.0.0.1', '2024-08-30 14:11:54', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408301412164911724998336491', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"DBS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301407394531724998059453\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:07:39\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"\\\",\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301400503171724997650317\\\",\\\"uploadTime\\\":\\\"2024-08-30 14:00:50\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724986134625\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301048555131724986135513\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:48:56\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1724985843967\\\",\\\"fileName\\\":\\\"MWL DBS for Aug 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408301044069391724985846939\\\",\\\"uploadTime\\\":\\\"2024-08-30 10:44:07\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723438228425\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121250300641723438230064\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:50:30\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437907216\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121245098861723437909886\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:45:10\\\",\\\"uploadUser\\\":\\\"管理员\\\"},{\\\"fileDescription\\\":\\\"DBS\\\",\\\"fileId\\\":\\\"1723437817492\\\",\\\"fileName\\\":\\\"MWL DBS for Apr 2024 Compelete V9.xlsx\\\",\\\"fileType\\\":\\\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\\\",\\\"uploadId\\\":\\\"UPLOAD_202408121243401411723437820141\\\",\\\"uploadTime\\\":\\\"2024-08-12 12:43:40\\\",\\\"uploadUser\\\":\\\"管理员\\\"}],\\\"pages\\\":1,\\\"total\\\":7}}\"', '127.0.0.1', '2024-08-30 14:12:16', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021007562941725242876294', '带密码登录', '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\\\":\\\"1-1\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-1-1\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-1\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-2\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-3\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-3\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-4\\\",\\\"labelName\\\":\\\"非计划领料\\\",\\\"path\\\":\\\"/clcNoPlan\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-5\\\",\\\"labelName\\\":\\\"需求看板\\\",\\\"path\\\":\\\"/clcKanban\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"2-1\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-2\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-3\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4-1\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-1\\\",\\\"labelName\\\":\\\"拣选任务\\\",\\\"path\\\":\\\"/pickTask\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-2\\\",\\\"labelName\\\":\\\"站台要料\\\",\\\"path\\\":\\\"/goodsToStation\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-3\\\",\\\"labelName\\\":\\\"工作流\\\",\\\"path\\\":\\\"/workFlow\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6-1\\\",\\\"labelName\\\":\\\"灯光监控\\\",\\\"path\\\":\\\"/eLocationMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-7\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-8\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-9\\\",\\\"labelName\\\":\\\"工作总结\\\",\\\"path\\\":\\\"/workSummary\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"3-1\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-2\\\",\\\"labelName\\\":\\\"灯光配置\\\",\\\"path\\\":\\\"/eLocationConfig\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-3\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-4\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-5\\\",\\\"labelName\\\":\\\"工站配置\\\",\\\"path\\\":\\\"/stationConfig\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"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-09-02 10:07:56', NULL); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021330428081725255042808', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 13:30:43', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021331192631725255079263', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 13:31:19', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021331234771725255083477', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 13:31:23', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021331312931725255091293', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 13:31:31', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021331347461725255094746', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 13:31:35', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021332092191725255129219', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 13:32:09', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021332366191725255156619', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 13:32:37', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021334501541725255290154', '带密码登录', '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\\\":\\\"1-1\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-1-1\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-1\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-2\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-3\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-3\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-4\\\",\\\"labelName\\\":\\\"非计划领料-CLC\\\",\\\"path\\\":\\\"/clcNoPlan\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-5\\\",\\\"labelName\\\":\\\"需求看板\\\",\\\"path\\\":\\\"/clcKanban\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"2-1\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-2\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-3\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4-1\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-1\\\",\\\"labelName\\\":\\\"拣选任务\\\",\\\"path\\\":\\\"/pickTask\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-2\\\",\\\"labelName\\\":\\\"站台要料\\\",\\\"path\\\":\\\"/goodsToStation\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-3\\\",\\\"labelName\\\":\\\"工作流\\\",\\\"path\\\":\\\"/workFlow\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6-1\\\",\\\"labelName\\\":\\\"灯光监控\\\",\\\"path\\\":\\\"/eLocationMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-7\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-8\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-9\\\",\\\"labelName\\\":\\\"工作总结\\\",\\\"path\\\":\\\"/workSummary\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"3-1\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-2\\\",\\\"labelName\\\":\\\"灯光配置\\\",\\\"path\\\":\\\"/eLocationConfig\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-3\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-4\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-5\\\",\\\"labelName\\\":\\\"工站配置\\\",\\\"path\\\":\\\"/stationConfig\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"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-09-02 13:34:50', NULL); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021335383911725255338391', '带密码登录', '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\\\":\\\"1-1\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-1-1\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-1\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-2\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-3\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-3\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-4\\\",\\\"labelName\\\":\\\"非计划领料\\\",\\\"path\\\":\\\"/clcNoPlan\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-5\\\",\\\"labelName\\\":\\\"需求看板\\\",\\\"path\\\":\\\"/clcKanban\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"2-1\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-2\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-3\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4-1\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-1\\\",\\\"labelName\\\":\\\"拣选任务\\\",\\\"path\\\":\\\"/pickTask\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-2\\\",\\\"labelName\\\":\\\"站台要料\\\",\\\"path\\\":\\\"/goodsToStation\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-3\\\",\\\"labelName\\\":\\\"工作流\\\",\\\"path\\\":\\\"/workFlow\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6-1\\\",\\\"labelName\\\":\\\"灯光监控\\\",\\\"path\\\":\\\"/eLocationMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-7\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-8\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-9\\\",\\\"labelName\\\":\\\"工作总结\\\",\\\"path\\\":\\\"/workSummary\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"3-1\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-2\\\",\\\"labelName\\\":\\\"灯光配置\\\",\\\"path\\\":\\\"/eLocationConfig\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-3\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-4\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-5\\\",\\\"labelName\\\":\\\"工站配置\\\",\\\"path\\\":\\\"/stationConfig\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"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-09-02 13:35:38', NULL); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021339073111725255547311', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '127.0.0.1', '2024-09-02 13:39:07', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021341410991725255701099', '查询上传记录', 'queryUploadRecord', '{\"isAsc\": false, \"fileId\": \"\", \"pageNo\": 1, \"sortBy\": \"upload_time\", \"fileName\": \"\", \"fileType\": \"\", \"pageSize\": 10, \"uploadId\": \"\", \"userName\": \"管理员\", \"uploadTime\": null, \"uploadUser\": \"\", \"fileDescription\": \"ORDERS\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[],\\\"pages\\\":0,\\\"total\\\":0}}\"', '127.0.0.1', '2024-09-02 13:41:41', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021344340181725255874018', '带密码登录', '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\\\":\\\"1-1\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-1-1\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-1\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-2\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-3\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-3\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-4\\\",\\\"labelName\\\":\\\"非计划领料\\\",\\\"path\\\":\\\"/clcNoPlan\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-5\\\",\\\"labelName\\\":\\\"需求看板\\\",\\\"path\\\":\\\"/clcKanban\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"2-1\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-2\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-3\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4-1\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-1\\\",\\\"labelName\\\":\\\"拣选任务\\\",\\\"path\\\":\\\"/pickTask\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-2\\\",\\\"labelName\\\":\\\"站台要料\\\",\\\"path\\\":\\\"/goodsToStation\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-3\\\",\\\"labelName\\\":\\\"工作流\\\",\\\"path\\\":\\\"/workFlow\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6-1\\\",\\\"labelName\\\":\\\"灯光监控\\\",\\\"path\\\":\\\"/eLocationMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-7\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-8\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-9\\\",\\\"labelName\\\":\\\"工作总结\\\",\\\"path\\\":\\\"/workSummary\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"3-1\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-2\\\",\\\"labelName\\\":\\\"灯光配置\\\",\\\"path\\\":\\\"/eLocationConfig\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-3\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-4\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-5\\\",\\\"labelName\\\":\\\"工站配置\\\",\\\"path\\\":\\\"/stationConfig\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"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-09-02 13:44:34', NULL); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021438200701725259100070', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 14:38:20', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409021500006691725260400669', '获取备料工作信息', 'getWorkByStandAndGoods', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"goodsId\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不完整,料号必须可少\\\"}\"', '127.0.0.1', '2024-09-02 15:00:01', '管理员'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409030800331051725321633105', '带密码登录', '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\\\":\\\"1-1\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-1-1\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-1\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-2\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-2-3\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-3\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-4\\\",\\\"labelName\\\":\\\"非计划领料\\\",\\\"path\\\":\\\"/clcNoPlan\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"1-5\\\",\\\"labelName\\\":\\\"需求看板\\\",\\\"path\\\":\\\"/clcKanban\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"2-1\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-2\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-3\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-4-1\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-1\\\",\\\"labelName\\\":\\\"拣选任务\\\",\\\"path\\\":\\\"/pickTask\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-2\\\",\\\"labelName\\\":\\\"站台要料\\\",\\\"path\\\":\\\"/goodsToStation\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-5-3\\\",\\\"labelName\\\":\\\"工作流\\\",\\\"path\\\":\\\"/workFlow\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-6-1\\\",\\\"labelName\\\":\\\"灯光监控\\\",\\\"path\\\":\\\"/eLocationMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-7\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-8\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"2-9\\\",\\\"labelName\\\":\\\"工作总结\\\",\\\"path\\\":\\\"/workSummary\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"3-1\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-2\\\",\\\"labelName\\\":\\\"灯光配置\\\",\\\"path\\\":\\\"/eLocationConfig\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-3\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-4\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"3-5\\\",\\\"labelName\\\":\\\"工站配置\\\",\\\"path\\\":\\\"/stationConfig\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"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-09-03 08:00:33', NULL); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202409030800370281725321637028', '获取CLC看板需求', 'getClcKanbanRequirement', '{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"standId\": \"\", \"pageSize\": 10, \"userName\": \"管理员\"}', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取CLC看板需求成功。\\\",\\\"returnData\\\":{\\\"NumOfBoxOf810\\\":0,\\\"NumOfBoxOf811\\\":0,\\\"NumOfBoxOf822\\\":0,\\\"NumOfBoxOf911\\\":0,\\\"NumOfPcOf810\\\":0,\\\"NumOfPcOf811\\\":0,\\\"NumOfPcOf822\\\":0,\\\"NumOfPcOf911\\\":0,\\\"NumOfTypeOf810\\\":0,\\\"NumOfTypeOf811\\\":0,\\\"NumOfTypeOf822\\\":0,\\\"NumOfTypeOf911\\\":0,\\\"TotalNumOfBox\\\":0,\\\"TotalNumOfPc\\\":0,\\\"TotalNumOfType\\\":0,\\\"numOfBoxOf810\\\":0,\\\"numOfBoxOf811\\\":0,\\\"numOfBoxOf822\\\":0,\\\"numOfBoxOf911\\\":0,\\\"numOfPcOf810\\\":0,\\\"numOfPcOf811\\\":0,\\\"numOfPcOf822\\\":0,\\\"numOfPcOf911\\\":0,\\\"numOfTypeOf810\\\":0,\\\"numOfTypeOf811\\\":0,\\\"numOfTypeOf822\\\":0,\\\"numOfTypeOf911\\\":0,\\\"totalNumOfBox\\\":0,\\\"totalNumOfPc\\\":0,\\\"totalNumOfType\\\":0}}\"', '127.0.0.1', '2024-09-03 08:00:37', '管理员'); -- ---------------------------- -- Table structure for tbl_sys_menu @@ -21466,29 +19928,37 @@ CREATE TABLE `tbl_sys_menu` ( -- Records of tbl_sys_menu -- ---------------------------- INSERT INTO `tbl_sys_menu` VALUES ('1', '操作', 'Operation', '', '0'); -INSERT INTO `tbl_sys_menu` VALUES ('11', '入库', NULL, '/goodsIn', '1'); -INSERT INTO `tbl_sys_menu` VALUES ('12', '出库', NULL, '/goodsOut', '1'); -INSERT INTO `tbl_sys_menu` VALUES ('13', '盘点', NULL, '/inventory', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-1', '入库', NULL, '/goodsIn', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-1-1', '呼叫空箱', NULL, '/testCallEmptyVehicle', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-2', '出库', NULL, '/goodsOut', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-2-1', '备料执行', NULL, '/testDoKitting', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-2-2', '备料完成', NULL, '/testFinishKitting', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-2-3', '整理盒子', NULL, '/testSortBoxs', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-3', '盘点', NULL, '/inventory', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-4', '非计划领料', NULL, '/clcNoPlan', '1'); +INSERT INTO `tbl_sys_menu` VALUES ('1-5', '需求看板', NULL, '/clcKanban', '1'); INSERT INTO `tbl_sys_menu` VALUES ('2', '数据', 'Histogram', '', '0'); -INSERT INTO `tbl_sys_menu` VALUES ('21', '库存信息', NULL, '/stock', '2'); -INSERT INTO `tbl_sys_menu` VALUES ('22', '物料信息', NULL, '/goods', '2'); -INSERT INTO `tbl_sys_menu` VALUES ('23', '入库记录', NULL, '/inTaskRecord', '2'); -INSERT INTO `tbl_sys_menu` VALUES ('24', '出库记录', NULL, '/outTaskRecord', '2'); -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 ('2-1', '库存信息', NULL, '/stock', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-2', '物料信息', NULL, '/goods', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-3', '入库记录', NULL, '/inTaskRecord', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-4', '出库记录', NULL, '/outTaskRecord', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-4-1', '盘点记录', NULL, '/inventoryRecord', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-5', '任务监控', NULL, '/taskMonitor', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-5-1', '拣选任务', NULL, '/pickTask', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-5-2', '站台要料', NULL, '/goodsToStation', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-5-3', '工作流', NULL, '/workFlow', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-6', '库位监控', NULL, '/location', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-6-1', '灯光监控', NULL, '/eLocationMonitor', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-7', '料箱监控', NULL, '/vehicles', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-8', '接口日志', NULL, '/wmsLog', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('2-9', '工作总结', NULL, '/workSummary', '2'); INSERT INTO `tbl_sys_menu` VALUES ('3', '系统', 'Setting', NULL, '0'); -INSERT INTO `tbl_sys_menu` VALUES ('35', '系统配置', NULL, '/config', '3'); +INSERT INTO `tbl_sys_menu` VALUES ('3-1', '系统配置', NULL, '/config', '3'); +INSERT INTO `tbl_sys_menu` VALUES ('3-2', '灯光配置', NULL, '/eLocationConfig', '3'); +INSERT INTO `tbl_sys_menu` VALUES ('3-3', '上传DBS', NULL, '/uploadDbs', '3'); +INSERT INTO `tbl_sys_menu` VALUES ('3-4', '上传工单', NULL, '/uploadOrders', '3'); +INSERT INTO `tbl_sys_menu` VALUES ('3-5', '工站配置', NULL, '/stationConfig', '3'); 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 @@ -21505,29 +19975,36 @@ CREATE TABLE `tbl_sys_permission` ( -- Records of tbl_sys_permission -- ---------------------------- INSERT INTO `tbl_sys_permission` VALUES (1, '1', 1); -INSERT INTO `tbl_sys_permission` VALUES (2, '11', 1); -INSERT INTO `tbl_sys_permission` VALUES (3, '12', 1); -INSERT INTO `tbl_sys_permission` VALUES (4, '13', 1); -INSERT INTO `tbl_sys_permission` VALUES (5, '2', 1); -INSERT INTO `tbl_sys_permission` VALUES (6, '21', 1); -INSERT INTO `tbl_sys_permission` VALUES (7, '22', 1); -INSERT INTO `tbl_sys_permission` VALUES (8, '23', 1); -INSERT INTO `tbl_sys_permission` VALUES (9, '24', 1); -INSERT INTO `tbl_sys_permission` VALUES (10, '241', 1); -INSERT INTO `tbl_sys_permission` VALUES (11, '25', 1); -INSERT INTO `tbl_sys_permission` VALUES (12, '26', 1); -INSERT INTO `tbl_sys_permission` VALUES (14, '3', 1); -INSERT INTO `tbl_sys_permission` VALUES (19, '35', 1); -INSERT INTO `tbl_sys_permission` VALUES (20, '28', 1); -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); +INSERT INTO `tbl_sys_permission` VALUES (2, '2', 1); +INSERT INTO `tbl_sys_permission` VALUES (3, '3', 1); +INSERT INTO `tbl_sys_permission` VALUES (4, '1-1', 1); +INSERT INTO `tbl_sys_permission` VALUES (5, '1-1-1', 1); +INSERT INTO `tbl_sys_permission` VALUES (6, '1-2', 1); +INSERT INTO `tbl_sys_permission` VALUES (7, '1-2-1', 1); +INSERT INTO `tbl_sys_permission` VALUES (8, '1-2-2', 1); +INSERT INTO `tbl_sys_permission` VALUES (9, '1-2-3', 1); +INSERT INTO `tbl_sys_permission` VALUES (10, '1-3', 1); +INSERT INTO `tbl_sys_permission` VALUES (11, '1-4', 1); +INSERT INTO `tbl_sys_permission` VALUES (12, '1-5', 1); +INSERT INTO `tbl_sys_permission` VALUES (13, '2-1', 1); +INSERT INTO `tbl_sys_permission` VALUES (14, '2-2', 1); +INSERT INTO `tbl_sys_permission` VALUES (15, '2-3', 1); +INSERT INTO `tbl_sys_permission` VALUES (16, '2-4', 1); +INSERT INTO `tbl_sys_permission` VALUES (17, '2-4-1', 1); +INSERT INTO `tbl_sys_permission` VALUES (18, '2-5', 1); +INSERT INTO `tbl_sys_permission` VALUES (19, '2-5-1', 1); +INSERT INTO `tbl_sys_permission` VALUES (20, '2-5-2', 1); +INSERT INTO `tbl_sys_permission` VALUES (21, '2-5-3', 1); +INSERT INTO `tbl_sys_permission` VALUES (22, '2-6', 1); +INSERT INTO `tbl_sys_permission` VALUES (23, '2-6-1', 1); +INSERT INTO `tbl_sys_permission` VALUES (24, '2-7', 1); +INSERT INTO `tbl_sys_permission` VALUES (25, '2-8', 1); +INSERT INTO `tbl_sys_permission` VALUES (26, '2-9', 1); +INSERT INTO `tbl_sys_permission` VALUES (27, '3-1', 1); +INSERT INTO `tbl_sys_permission` VALUES (28, '3-2', 1); +INSERT INTO `tbl_sys_permission` VALUES (29, '3-3', 1); +INSERT INTO `tbl_sys_permission` VALUES (30, '3-4', 1); +INSERT INTO `tbl_sys_permission` VALUES (31, '3-5', 1); -- ---------------------------- -- Table structure for tbl_sys_role