wcs_java/wcs/db/wcs.sql

9682 lines
6.0 MiB
MySQL
Raw Normal View History

2026-01-22 11:07:07 +08:00
/*
Navicat Premium Dump SQL
Source Server : localhost
Source Server Type : MySQL
Source Server Version : 80404 (8.4.4)
Source Host : localhost:3306
Source Schema : wcs
Target Server Type : MySQL
Target Server Version : 80404 (8.4.4)
File Encoding : 65001
Date: 09/01/2026 17:01:56
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for t_app_base_api_info
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_api_info`;
CREATE TABLE `t_app_base_api_info` (
`api_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'API 键',
`api_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'API 名称',
`root_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '根地址键名',
`address` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '地址',
`tag` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '标记',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`api_key`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_api_info
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_api_info` (`api_key`, `api_name`, `root_key`, `address`, `tag`, `remark`) VALUES ('WMS_BASE', 'WMS根地址', NULL, 'http://106.14.189.117:18080', '-', NULL);
INSERT INTO `t_app_base_api_info` (`api_key`, `api_name`, `root_key`, `address`, `tag`, `remark`) VALUES ('WMS_CONVEY_TASK_STATUS_CALLBACK', '上报箱式线任务状态', 'WMS_BASE', '/api/test', NULL, NULL);
INSERT INTO `t_app_base_api_info` (`api_key`, `api_name`, `root_key`, `address`, `tag`, `remark`) VALUES ('WMS_LOGIN_STACKER', '注册堆垛机任务', 'WMS_BASE', ' ', NULL, NULL);
INSERT INTO `t_app_base_api_info` (`api_key`, `api_name`, `root_key`, `address`, `tag`, `remark`) VALUES ('WMS_STOCK_TASK_STATUS_CALLBACK', '上报仓储任务状态', 'WMS_BASE', '\n', NULL, '-');
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_config
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_config`;
CREATE TABLE `t_app_base_config` (
`config_key` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置键',
`config_name` varchar(64) DEFAULT NULL COMMENT '配置名称',
`config_type` int NOT NULL COMMENT '配置类型',
`immediately` int NOT NULL COMMENT '立即生效标记',
`config_value` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '配置值',
`tag_text` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '标记文本',
`client_show` int NOT NULL COMMENT '是否能被客户端搜索到',
`value_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '值类型',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`config_key`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_config
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('API_RECORD_SAVE_DAYS', 'API 记录保存天数', 0, 0, '180', NULL, 1, 'int32', '2025-05-15 22:43:59', '2025-05-15 22:43:57', NULL);
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('COMPOSE_TASK_TIMEOUT', '任务在此时间后视为执行超时', 0, 1, '180', NULL, 1, 'int32', '2025-08-19 15:06:01', '2025-08-19 15:06:04', '单位:分钟');
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY_TASK_SAVE_DAYS', '箱式线任务记录保存天数', 0, 0, '180', NULL, 1, 'int32', '2025-05-15 22:40:36', '2025-05-15 22:40:38', NULL);
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('CUSTOMER_NAME', '客户名称', 0, 0, '测试仓', NULL, 1, 'int32', '2025-05-15 23:03:22', '2025-05-17 16:30:26', '-');
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('DEVICE_ERR_ROCORD_SAVE_DAYS', '设备报警记录保存天数', 0, 1, '180', NULL, 1, 'int32', '2025-05-15 22:51:10', '2025-05-15 22:51:13', NULL);
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('ETAG_TASK_SAVE_DAYS', '电子标签任务记录保存天数', 0, 0, '180', NULL, 1, 'int32', '2025-05-15 22:40:50', '2025-05-15 22:40:47', NULL);
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('PLC_COMM_RECORD_SAVE_DAYS', 'PLC交互记录保存天数', 0, 0, '180', NULL, 1, 'int32', '2025-05-15 22:53:25', '2025-05-15 22:53:27', NULL);
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('PLC_TASK_ID', '设备任务号序列', 0, 1, '100100', '禁止随意修改', 1, 'int32', '2024-10-29 14:51:47', '2025-06-08 15:53:03', '-');
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('SCAN_RECORD_SAVE_DAYS', '扫码记录保存天数', 0, 0, '180', NULL, 1, 'int32', '2025-05-15 22:45:32', '2025-05-15 22:45:35', NULL);
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('STORAGE_TASK_SAVE_DAYS', '仓储任务记录保存天数', 0, 0, '180', NULL, 1, 'int32', '2025-05-15 22:43:44', '2025-05-15 22:43:47', NULL);
INSERT INTO `t_app_base_config` (`config_key`, `config_name`, `config_type`, `immediately`, `config_value`, `tag_text`, `client_show`, `value_type`, `create_time`, `update_time`, `remark`) VALUES ('UPKEEP_RECORD_SAVE_DAYS', '保养记录保存天数', 0, 0, '-1', NULL, 1, 'int32', '2025-05-15 22:55:22', '2025-05-15 22:55:25', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_db
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_db`;
CREATE TABLE `t_app_base_db` (
`db_name` varchar(255) NOT NULL COMMENT 'DB名称',
`plc_id` int NOT NULL COMMENT '管辖的PLC',
`db_address` varchar(255) NOT NULL COMMENT 'DB地址',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`db_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_base_db
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_db` (`db_name`, `plc_id`, `db_address`, `remark`) VALUES ('测试DB', 4, 'DB300.100', '-');
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_err_info
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_err_info`;
CREATE TABLE `t_app_base_err_info` (
`id` varchar(64) NOT NULL COMMENT '序号',
`equipment_type` int NOT NULL COMMENT '设备类型:\n0 - 堆垛机\n1 - 托盘线\n2 - 箱式线\n4 - 小车',
`err_code` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '报警编号',
`err_level` int NOT NULL COMMENT '报警等级',
`err_type` int NOT NULL COMMENT '报警类型',
`err_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '报警信息',
`suggest` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '建议',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_err_info
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759325618139010000', 0, '111', 3, 2, '设备冒烟', '灭火器', '');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759325618139010003', 2, '334', 2, 2, '紧急测试', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759421224203010000', 1, '111', 2, 2, '4234', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759421224203010001', 1, '222', 2, 0, '4234', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759421224203010002', 3, '223', 0, 2, '小车抖动', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759421224204010000', 1, '334', 2, 2, '4234', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759421233709010000', 1, '111', 1, 1, '4234', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759421233709010001', 1, '222', 2, 2, '4234', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759421233709010002', 1, '223', 2, 2, '4234', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('1759421233709010003', 1, '334', 1, 1, '4234', '423424', '423423');
INSERT INTO `t_app_base_err_info` (`id`, `equipment_type`, `err_code`, `err_level`, `err_type`, `err_msg`, `suggest`, `remark`) VALUES ('2312312', 1, '101', 2, 2, '测试', '不管', '-');
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_group_permission
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_group_permission`;
CREATE TABLE `t_app_base_group_permission` (
`id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键',
`user_group` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户组',
`create_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '添加权限的人',
`menu_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '菜单ID',
`create_time` datetime NOT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_group_permission
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1231231223423423434', 'ug-developer', 'developer', '05-7', '2025-10-08 08:46:25');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1231231242342342342', 'ug-developer', 'developer', '10-2', '2025-10-29 21:33:58');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('123234234234234546', 'ug-developer', 'developer', '05-8', '2025-11-01 21:45:57');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478888010000', 'ug-conveyAdmin', 'developer', '01-1', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010000', 'ug-conveyAdmin', 'developer', '01-2', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010001', 'ug-conveyAdmin', 'developer', '01-3', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010002', 'ug-conveyAdmin', 'developer', '01-4', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010003', 'ug-conveyAdmin', 'developer', '05-1', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010004', 'ug-conveyAdmin', 'developer', '06-1', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010005', 'ug-conveyAdmin', 'developer', '06-2', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010006', 'ug-conveyAdmin', 'developer', '06-3', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010007', 'ug-conveyAdmin', 'developer', '06-4', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010008', 'ug-conveyAdmin', 'developer', '06-5', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010009', 'ug-conveyAdmin', 'developer', '06-6', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010010', 'ug-conveyAdmin', 'developer', '07-1', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010011', 'ug-conveyAdmin', 'developer', '07-3', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010012', 'ug-conveyAdmin', 'developer', '07-4', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010013', 'ug-conveyAdmin', 'developer', '08-1', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010014', 'ug-conveyAdmin', 'developer', '08-2', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010015', 'ug-conveyAdmin', 'developer', '08-3', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747114478889010016', 'ug-conveyAdmin', 'developer', '09-1', '2025-05-13 13:34:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724272010000', 'ug-developer', 'developer', '01-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010000', 'ug-developer', 'developer', '01-2', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010001', 'ug-developer', 'developer', '01-3', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010002', 'ug-developer', 'developer', '01-4', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010003', 'ug-developer', 'developer', '02-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010004', 'ug-developer', 'developer', '02-2', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010005', 'ug-developer', 'developer', '02-3', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010006', 'ug-developer', 'developer', '02-4', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010007', 'ug-developer', 'developer', '02-5', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010008', 'ug-developer', 'developer', '03-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010009', 'ug-developer', 'developer', '03-2', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010010', 'ug-developer', 'developer', '04-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010011', 'ug-developer', 'developer', '04-2', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010012', 'ug-developer', 'developer', '05-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010013', 'ug-developer', 'developer', '05-2', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010014', 'ug-developer', 'developer', '05-3', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010015', 'ug-developer', 'developer', '05-4', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010016', 'ug-developer', 'developer', '06-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010017', 'ug-developer', 'developer', '06-2', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010018', 'ug-developer', 'developer', '06-3', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010019', 'ug-developer', 'developer', '06-4', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010020', 'ug-developer', 'developer', '06-5', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010021', 'ug-developer', 'developer', '06-6', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010022', 'ug-developer', 'developer', '07-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010023', 'ug-developer', 'developer', '07-3', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010024', 'ug-developer', 'developer', '07-4', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724273010025', 'ug-developer', 'developer', '08-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010000', 'ug-developer', 'developer', '08-2', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010001', 'ug-developer', 'developer', '09-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010002', 'ug-developer', 'developer', '09-2', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010003', 'ug-developer', 'developer', '09-3', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010004', 'ug-developer', 'developer', '09-4', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010005', 'ug-developer', 'developer', '10-1', '2025-05-17 16:48:44');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010006', 'ug-developer', 'developer', '05-5', '2025-08-04 13:39:29');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010007', 'ug-developer', 'developer', '05-6', '2025-08-04 13:39:29');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1747471724274010008', 'ug-developer', 'developer', '01-5', '2025-09-22 08:51:59');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759378010000', 'ug-Admin', 'developer', '03-1', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759381010000', 'ug-Admin', 'developer', '03-2', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759381010001', 'ug-Admin', 'developer', '04-1', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759381010002', 'ug-Admin', 'developer', '04-2', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759381010003', 'ug-Admin', 'developer', '05-1', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759381010004', 'ug-Admin', 'developer', '05-2', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759381010005', 'ug-Admin', 'developer', '05-3', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010000', 'ug-Admin', 'developer', '05-4', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010001', 'ug-Admin', 'developer', '05-5', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010002', 'ug-Admin', 'developer', '05-6', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010003', 'ug-Admin', 'developer', '06-1', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010004', 'ug-Admin', 'developer', '06-2', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010005', 'ug-Admin', 'developer', '06-6', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010006', 'ug-Admin', 'developer', '07-1', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010007', 'ug-Admin', 'developer', '07-3', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010008', 'ug-Admin', 'developer', '07-4', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010009', 'ug-Admin', 'developer', '09-1', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010010', 'ug-Admin', 'developer', '09-2', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010011', 'ug-Admin', 'developer', '09-3', '2025-09-02 14:32:39');
INSERT INTO `t_app_base_group_permission` (`id`, `user_group`, `create_user`, `menu_id`, `create_time`) VALUES ('1756794759382010012', 'ug-Admin', 'developer', '09-4', '2025-09-02 14:32:39');
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_led
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_led`;
CREATE TABLE `t_app_base_led` (
`id` varchar(64) NOT NULL COMMENT '主键',
`led_ip` varchar(64) NOT NULL COMMENT 'led屏IP',
`led_brand` int NOT NULL COMMENT 'led屏品牌',
`height` int NOT NULL COMMENT '高度',
`width` int NOT NULL COMMENT '宽度',
`color_type` int NOT NULL COMMENT '颜色模式',
`location` varchar(64) DEFAULT NULL COMMENT '绑定的位置',
`is_external` int NOT NULL COMMENT '是否外部\n0 - WCS控制1 - 外部系统控制',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_base_led
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_led` (`id`, `led_ip`, `led_brand`, `height`, `width`, `color_type`, `location`, `is_external`, `remark`) VALUES ('1759994462359010000', '192.168.103.54', 0, 64, 192, 1, '333', 0, NULL);
INSERT INTO `t_app_base_led` (`id`, `led_ip`, `led_brand`, `height`, `width`, `color_type`, `location`, `is_external`, `remark`) VALUES ('1759994477973010000', '192.168.103.54', 0, 64, 192, 2, '201', 1, NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_maintenance_info
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_maintenance_info`;
CREATE TABLE `t_app_base_maintenance_info` (
`maintenance_no` int NOT NULL COMMENT '保养编号',
`maintenance_period` int NOT NULL COMMENT '保养周期',
`last_time` datetime NOT NULL COMMENT '上次保养时间',
`next_time` datetime NOT NULL COMMENT '下次保养时间',
`maintenance_msg` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '保养信息',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`maintenance_no`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_maintenance_info
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_menu
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_menu`;
CREATE TABLE `t_app_base_menu` (
`menu_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '菜单ID',
`menu_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '菜单名称',
`menu_level` int NOT NULL COMMENT '菜单等级',
`father_menu_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '父菜单ID',
`menu_status` int NOT NULL COMMENT '菜单状态',
`menu_ico` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '菜单图标',
`router_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '路由名称',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
PRIMARY KEY (`menu_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_menu
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('01', '箱式线综合管理', 1, NULL, 1, 'CreditCard', NULL, '2024-10-31 12:22:16', '2025-04-25 13:25:08');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('01-1', '当前箱线任务', 2, '01', 1, NULL, 'conveyTask', '2025-09-16 11:37:43', '2025-09-17 22:25:44');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('01-2', '历史箱线任务', 2, '01', 1, NULL, 'conveyTaskBak', '2025-09-16 11:37:55', '2025-09-19 16:33:19');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('01-3', '复核台设置', 2, '01', 1, NULL, 'conveyCheckStand', '2024-10-31 12:25:07', '2025-11-18 14:47:31');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('01-4', '发货口设置', 2, '01', 1, NULL, NULL, '2024-10-31 12:25:30', '2024-10-31 12:25:33');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('01-5', '捡货站台配置', 2, '01', 1, NULL, 'conveyPickStand', '2025-09-22 08:51:09', '2025-09-24 13:58:16');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('02', '电子标签综合管理', 1, NULL, 1, 'Pointer', NULL, '2024-10-31 12:26:24', '2024-10-31 12:26:26');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('02-1', '当前标签任务', 2, '02', 1, NULL, 'etagTask', '2024-10-31 12:26:47', '2025-09-17 22:26:02');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('02-2', '历史标签任务', 2, '02', 1, NULL, NULL, '2024-10-31 12:27:11', '2025-09-17 22:26:11');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('02-3', '控制器管理', 2, '02', 1, NULL, 'etagController', '2024-10-31 12:27:32', '2025-11-03 14:26:34');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('02-4', '标签ID管理', 2, '02', 1, NULL, 'etagTag', '2024-10-31 12:27:54', '2025-11-12 15:46:42');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('02-5', '电子标签货位管理', 2, '02', 1, NULL, 'etagLocation', '2024-10-31 12:28:12', '2025-12-23 13:10:30');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('03', '仓储组合任务', 1, NULL, 1, 'MessageBox', NULL, '2024-10-31 12:28:35', '2025-09-01 12:57:22');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('03-1', '当前任务(组合)', 2, '03', 1, NULL, 'stockComposeTask', '2024-10-31 12:28:56', '2025-09-01 12:57:27');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('03-2', '历史任务(组合)', 2, '03', 1, NULL, 'stockComposeTaskBak', '2024-10-31 12:29:14', '2025-09-01 12:57:32');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('04', '仓储独立任务', 1, NULL, 1, 'Guide', NULL, '2024-10-31 12:31:11', '2025-09-01 12:57:15');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('04-1', '当前任务(独立)', 2, '04', 1, NULL, 'stockSingleTask', '2024-10-31 12:31:31', '2025-09-01 12:57:40');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('04-2', '历史任务(独立)', 2, '04', 1, NULL, 'stockSingleTaskBak', '2024-10-31 12:31:47', '2025-09-02 14:40:51');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05', '设备及点位管理', 1, NULL, 1, 'Star', NULL, '2025-05-05 15:29:19', '2025-05-10 09:11:58');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05-1', 'PLC 管理', 2, '05', 1, NULL, 'plcManage', '2024-10-31 12:25:56', '2025-05-29 08:48:39');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05-2', '堆垛机设备管理', 2, '05', 1, NULL, 'stackerManage', '2025-05-05 15:30:00', '2025-05-29 16:22:57');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05-3', '托盘线设备管理', 2, '05', 1, NULL, 'trayConveyManage', '2025-05-05 15:30:58', '2025-08-03 10:12:27');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05-4', '仓库货位管理', 2, '05', 1, NULL, 'stackerLocationManage', '2024-10-31 12:30:07', '2025-06-03 14:31:58');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05-5', '输送线点位管理', 2, '05', 1, NULL, 'conveyLocationManage', '2025-08-04 13:38:31', '2025-08-04 21:54:50');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05-6', '扫码点位管理', 2, '05', 1, NULL, 'stockScanManage', '2025-08-05 13:09:35', '2025-08-11 12:18:41');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05-7', 'LED屏管理', 2, '05', 1, NULL, 'ledManage', '2025-10-08 08:45:35', '2025-10-09 13:23:16');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('05-8', '西门子DB管理', 2, '05', 1, NULL, 'siemensDbManage', '2025-11-01 21:45:15', '2025-11-01 21:58:29');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('06', '系统记录', 1, NULL, 1, 'Notebook', NULL, '2024-10-31 12:33:07', '2024-10-31 12:33:10');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('06-1', 'API 请求记录', 2, '06', 1, NULL, 'recordApiRequest', '2024-10-31 12:33:25', '2025-09-01 19:48:02');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('06-2', 'API 接收记录', 2, '06', 1, NULL, 'recordApiResponse', '2024-10-31 12:33:41', '2025-09-02 13:40:28');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('06-3', '设备报警记录', 2, '06', 1, NULL, 'equipmentError', '2024-10-31 12:33:58', '2025-10-04 14:05:31');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('06-4', '保养记录', 2, '06', 1, NULL, NULL, '2024-10-31 12:34:18', '2024-10-31 12:34:21');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('06-5', 'PLC 交互记录', 2, '06', 1, NULL, NULL, '2024-10-31 12:34:37', '2024-10-31 12:34:40');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('06-6', '扫码记录', 2, '06', 1, NULL, 'recordScan', '2024-10-31 12:23:38', '2025-09-01 13:34:54');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('07', '账户管理', 1, NULL, 1, 'User', NULL, '2024-10-31 12:37:18', '2024-10-31 12:37:21');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('07-1', '我的账户', 2, '07', 1, NULL, 'localUserManage', '2024-10-31 12:37:38', '2025-05-13 14:19:44');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('07-3', '用户管理', 2, '07', 1, NULL, 'userManage', '2024-10-31 12:38:17', '2025-04-25 14:26:17');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('07-4', '用户组及权限管理', 2, '07', 1, '', 'userGroupManage', '2024-10-31 12:38:36', '2024-10-31 12:38:38');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('08', '基础资料', 1, NULL, 1, 'Coin', NULL, '2024-10-31 12:39:25', '2024-10-31 12:39:27');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('08-1', '报警信息', 2, '08', 1, NULL, 'baseError', '2024-10-31 12:39:44', '2025-09-28 15:07:46');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('08-2', '保养信息', 2, '08', 1, NULL, NULL, '2024-10-31 12:40:01', '2024-10-31 12:40:03');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('09', '系统配置', 1, NULL, 1, 'Cpu', NULL, '2024-10-31 12:40:42', '2024-10-31 12:40:44');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('09-1', '系统配置', 2, '09', 1, NULL, 'configManage', '2024-10-31 12:41:01', '2025-05-14 21:26:58');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('09-2', '菜单管理', 2, '09', 1, NULL, 'menuManage', '2025-04-21 10:13:55', '2025-04-21 10:13:59');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('09-3', 'API 地址配置', 2, '09', 1, NULL, 'apiInfoManage', '2024-10-31 12:40:21', '2025-09-05 11:04:55');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('09-4', '定时任务配置', 2, '09', 1, NULL, 'quartzManage', '2025-05-17 16:33:24', '2025-05-20 09:18:01');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('10', '附加功能', 1, NULL, 1, 'TakeawayBox', NULL, '2024-10-31 12:41:18', '2024-10-31 12:41:21');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('10-1', '条码打印', 2, '10', 1, NULL, 'printCode', '2024-10-31 12:41:36', '2025-09-06 20:49:39');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('10-2', '文件管理', 2, '10', 1, NULL, 'fileManage', '2025-10-29 21:33:24', '2025-10-30 11:18:19');
INSERT INTO `t_app_base_menu` (`menu_id`, `menu_name`, `menu_level`, `father_menu_id`, `menu_status`, `menu_ico`, `router_name`, `create_time`, `update_time`) VALUES ('99', '客户定制', 1, NULL, 0, 'Star', NULL, '2024-12-17 16:24:21', '2024-12-17 16:24:23');
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_plc
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_plc`;
CREATE TABLE `t_app_base_plc` (
`plc_id` int NOT NULL COMMENT 'PLC ID',
`plc_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'PLC名称',
`plc_type` int NOT NULL COMMENT 'PLC型号\n1-西门子',
`plc_version` varchar(64) DEFAULT NULL COMMENT 'plc版本',
`plc_status` int NOT NULL COMMENT '状态',
`ip` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'PLC IP地址',
`port` int NOT NULL COMMENT 'PLC端口',
`slot` int DEFAULT NULL COMMENT '插槽',
`rack` int DEFAULT NULL COMMENT '机架',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`plc_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_plc
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_plc` (`plc_id`, `plc_name`, `plc_type`, `plc_version`, `plc_status`, `ip`, `port`, `slot`, `rack`, `create_time`, `update_time`, `remark`) VALUES (1, '箱式线PLC测试', 1, '1200', 0, '192.168.110.241', 103, 1, 0, '2024-12-20 10:07:46', '2025-05-29 14:54:47', '测试修改');
INSERT INTO `t_app_base_plc` (`plc_id`, `plc_name`, `plc_type`, `plc_version`, `plc_status`, `ip`, `port`, `slot`, `rack`, `create_time`, `update_time`, `remark`) VALUES (2, '堆垛机0号', 1, '1200', 1, '192.168.0.20', 102, 1, 0, '2025-05-29 15:06:33', '2025-05-29 15:06:33', 'ss');
INSERT INTO `t_app_base_plc` (`plc_id`, `plc_name`, `plc_type`, `plc_version`, `plc_status`, `ip`, `port`, `slot`, `rack`, `create_time`, `update_time`, `remark`) VALUES (3, '堆垛机2号', 1, '1500', 1, '192.168.101.10', 102, 1, 0, '2025-05-29 13:58:02', '2025-05-29 13:58:02', '测试添加');
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_scan_method
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_scan_method`;
CREATE TABLE `t_app_base_scan_method` (
`method_id` varchar(64) NOT NULL COMMENT '方法ID',
`method_name` varchar(64) NOT NULL COMMENT '方法名称',
`method_msg` varchar(255) DEFAULT NULL COMMENT '方法信息',
`param1_desc` varchar(255) DEFAULT NULL COMMENT '参数1描述',
`param2_desc` varchar(255) DEFAULT NULL COMMENT '参数2描述',
`param3_desc` varchar(255) DEFAULT NULL COMMENT '参数3描述',
PRIMARY KEY (`method_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_base_scan_method
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_scan_method` (`method_id`, `method_name`, `method_msg`, `param1_desc`, `param2_desc`, `param3_desc`) VALUES ('CONVEY_PICK_CHECK', '箱式线捡选任务检测', '检查是否存在箱式线捡选任务,若没有则给异常', NULL, NULL, NULL);
INSERT INTO `t_app_base_scan_method` (`method_id`, `method_name`, `method_msg`, `param1_desc`, `param2_desc`, `param3_desc`) VALUES ('CONVEY_PICK_TASK', '箱式线捡选任务检测', '检测是否存在某些站台的任务,若没有就给异常', '需要检测是否存在任务的站台,若有多个用分号隔开', NULL, NULL);
INSERT INTO `t_app_base_scan_method` (`method_id`, `method_name`, `method_msg`, `param1_desc`, `param2_desc`, `param3_desc`) VALUES ('CONVEY_PICK_TASK_AREA', '箱式线捡选任务检测', '检测是否存在某些站台的任务,若没有在检查是否存在其他区域的任务,若有就给环线运行,若都没有就给异常', '需要检测是否存在任务的站台,若有多个用分号隔开', '需要检测是否存在任务的其他站台,若有多个用分号隔开', NULL);
INSERT INTO `t_app_base_scan_method` (`method_id`, `method_name`, `method_msg`, `param1_desc`, `param2_desc`, `param3_desc`) VALUES ('LOGIN_STACKER', '堆垛机任务注册,若存在任务则不注册', '注册任务时仅判断是否成功,若有任务返回则生成任务,没有则不生成,可后续发送', '要请求的上位系统名称注意此名称会拼接成apikey必须和API基础资料里的apiKey相同', NULL, NULL);
INSERT INTO `t_app_base_scan_method` (`method_id`, `method_name`, `method_msg`, `param1_desc`, `param2_desc`, `param3_desc`) VALUES ('LOGIN_STACKER_SEED', '堆垛机任务注册,注册完后根据结果分堆垛机', '注册任务时会处理其返回值,并分配载具去对应的堆垛机', '要请求的上位系统名称注意此名称会拼接成apikey必须和API基础资料里的apiKey相同', '发生异常时给PLC的值注意格式int16', NULL);
INSERT INTO `t_app_base_scan_method` (`method_id`, `method_name`, `method_msg`, `param1_desc`, `param2_desc`, `param3_desc`) VALUES ('STACKER_CHECK', '堆垛机任务检测', '检查是否存在堆垛机任务,若没有则给异常', NULL, NULL, NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_user
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_user`;
CREATE TABLE `t_app_base_user` (
`user_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户ID',
`user_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户名称',
`user_pwd` char(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '密码',
`user_status` int NOT NULL COMMENT '账户状态',
`user_level` int NOT NULL DEFAULT '0' COMMENT '用户级别',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`user_group` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户组',
`sex` int NOT NULL DEFAULT '0' COMMENT '用户性别',
`photo` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '照片、头像',
`last_login_time` datetime DEFAULT NULL COMMENT '上次登录时间',
PRIMARY KEY (`user_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_user
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_user` (`user_id`, `user_name`, `user_pwd`, `user_status`, `user_level`, `create_time`, `update_time`, `user_group`, `sex`, `photo`, `last_login_time`) VALUES ('admin', '管理员', '7MQZUEZJDUWWZ9XTEVTBGWFYEDKWVZU7HMF4PSP6L6QCCQVICCVQEBFTAN31XGMW9RNXRYYYK7J8BCOW34PWTW0YDDESA9XF6SLEA6XRSQZW3XCTWMIPMTFJ3TWMSNJQLEBO2HBD2JR2D6ZIQZY1JGLHGR0ZV8CKON5RTZZ9CNWOMWOWL7TLKHDVJ6LENHNAMK1DWZKZSFOI1LA4LXYDGDEQOJDVQ8YKBZM5E3ZLIQNLGRXRNNUA8KW40HEU8YG', 1, 3, '2025-09-02 14:31:38', '2026-01-08 13:28:09', 'ug-Admin', 0, NULL, '2026-01-08 13:28:09');
INSERT INTO `t_app_base_user` (`user_id`, `user_name`, `user_pwd`, `user_status`, `user_level`, `create_time`, `update_time`, `user_group`, `sex`, `photo`, `last_login_time`) VALUES ('dev', '无所不能的开发者', 'Z4MVQYYWJ1ECCBSFLIWOG2CN7ZSLZRFGUWYLKF9ZXYWY6H4RHHGRKZ8XG2KZ6HDLQOBIW7QDMJZBFSIC1QUD65GZZVGUQXP4EY1UUOWRZHCQD7CKAGNYHRV3DSV1Y53NZWHIRAXXKXGADI426LFIDFGG7Z6XLV3HYRMBEY5QK22WZUX0WZT9E9Y7PCX5TMASWP9S4RKXGYOBYMNOT2JYGQM7MGOYAAMHP3NT3WISD2NQZ8JLFTVE70AIAUFJEGO', 1, 4, '2024-10-31 12:42:23', '2026-01-08 14:05:11', 'ug-developer', 0, NULL, '2026-01-08 14:05:11');
INSERT INTO `t_app_base_user` (`user_id`, `user_name`, `user_pwd`, `user_status`, `user_level`, `create_time`, `update_time`, `user_group`, `sex`, `photo`, `last_login_time`) VALUES ('test', '测试账号', 'test', 4, 1, '2025-05-07 22:00:20', '2025-05-13 14:17:25', 'ug-developer', 1, NULL, NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_base_user_group
-- ----------------------------
DROP TABLE IF EXISTS `t_app_base_user_group`;
CREATE TABLE `t_app_base_user_group` (
`user_group` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户组ID',
`group_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户组名称',
`group_level` int NOT NULL COMMENT '用户组级别',
`group_status` int NOT NULL COMMENT '用户组状态',
`show_user_level` int NOT NULL DEFAULT '0' COMMENT '能够搜索到这条记录需要的用户级别',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
PRIMARY KEY (`user_group`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_base_user_group
-- ----------------------------
BEGIN;
INSERT INTO `t_app_base_user_group` (`user_group`, `group_name`, `group_level`, `group_status`, `show_user_level`, `create_time`, `update_time`) VALUES ('ug-Admin', '超级管理员', 900, 1, 0, '2025-09-02 14:30:54', '2025-09-02 14:30:54');
INSERT INTO `t_app_base_user_group` (`user_group`, `group_name`, `group_level`, `group_status`, `show_user_level`, `create_time`, `update_time`) VALUES ('ug-conveyAdmin', '箱式线管理员', 800, 1, 0, '2025-05-13 13:31:22', '2025-05-13 13:31:22');
INSERT INTO `t_app_base_user_group` (`user_group`, `group_name`, `group_level`, `group_status`, `show_user_level`, `create_time`, `update_time`) VALUES ('ug-developer', '开发者', 999, 1, 1, '2024-10-31 12:44:32', '2024-10-31 12:44:34');
INSERT INTO `t_app_base_user_group` (`user_group`, `group_name`, `group_level`, `group_status`, `show_user_level`, `create_time`, `update_time`) VALUES ('ug-test', '测试用户组', 700, 0, 0, '2025-05-10 13:25:41', '2025-05-13 13:07:44');
COMMIT;
-- ----------------------------
-- Table structure for t_app_convey_check_stand
-- ----------------------------
DROP TABLE IF EXISTS `t_app_convey_check_stand`;
CREATE TABLE `t_app_convey_check_stand` (
`stand_id` varchar(64) NOT NULL COMMENT '站台号',
`stand_name` varchar(64) DEFAULT NULL COMMENT '站台名称',
`plc_id` int NOT NULL COMMENT '管辖的PLC',
`area_id` varchar(64) NOT NULL DEFAULT '-' COMMENT '区域号',
`stand_status` int NOT NULL COMMENT '站台状态',
`router` int NOT NULL DEFAULT '0' COMMENT '路向',
`read_arrive_address` varchar(32) DEFAULT NULL COMMENT '读取到达数据地址',
`write_task_address` varchar(32) DEFAULT NULL COMMENT '写入任务地址',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`stand_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_convey_check_stand
-- ----------------------------
BEGIN;
INSERT INTO `t_app_convey_check_stand` (`stand_id`, `stand_name`, `plc_id`, `area_id`, `stand_status`, `router`, `read_arrive_address`, `write_task_address`, `remark`) VALUES ('CHECK_1', '复核台1', 1, '-', 1, 1, 'DB300.23', 'DB301.33', 'wu');
COMMIT;
-- ----------------------------
-- Table structure for t_app_convey_location
-- ----------------------------
DROP TABLE IF EXISTS `t_app_convey_location`;
CREATE TABLE `t_app_convey_location` (
`location_id` varchar(64) NOT NULL COMMENT '点位号',
`business_location_id` varchar(64) NOT NULL COMMENT '业务点位号',
`location_name` varchar(64) NOT NULL COMMENT '点位名称',
`location_type` int NOT NULL COMMENT '点位类型',
`location_status` int NOT NULL COMMENT '点位状态',
`location_router` int NOT NULL COMMENT '点位路向,仅允许 int16',
`area_id` varchar(64) NOT NULL COMMENT '所属区域',
`plc_id` int NOT NULL COMMENT '所属PLC',
`read_status_address` varchar(64) DEFAULT NULL COMMENT '读取状态地址',
`write_task_address` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '写入任务地址',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_convey_location
-- ----------------------------
BEGIN;
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY1', 'CONVEY1', 'CONVEY1号站台', 1, 1, 1, 'CONVEY_AREA_1', 1, 'DB100.3', 'DB101.3', '2025-08-05 10:10:50', '2025-08-05 10:10:50', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY10', 'CONVEY10', 'CONVEY10号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:11:33', '2025-08-05 10:11:33', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY11', 'CONVEY11', 'CONVEY11号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:11:39', '2025-08-05 10:11:39', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY2', 'CONVEY2', 'CONVEY2号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:10:55', '2025-08-05 10:10:55', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY3', 'CONVEY3', 'CONVEY3号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:10:59', '2025-08-05 10:10:59', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY4', 'CONVEY4', 'CONVEY4号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:11:04', '2025-08-05 10:11:04', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY5', 'CONVEY5', 'CONVEY5号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:11:09', '2025-08-05 10:11:09', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY6', 'CONVEY6', 'CONVEY6号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:11:14', '2025-08-05 10:11:14', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY7', 'CONVEY7', 'CONVEY7号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:11:18', '2025-08-05 10:11:18', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY8', 'CONVEY8', 'CONVEY8号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:11:23', '2025-08-05 10:11:23', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CONVEY9', 'CONVEY9', 'CONVEY9号站台', 0, 1, 1, 'CONVEY_AREA_1', 1, NULL, NULL, '2025-08-05 10:11:28', '2025-08-05 10:11:28', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CT3', 'CT3', 'CT3号站台', 3, 1, 1, 'CHECK_AREA_1', 1, NULL, NULL, '2025-08-05 10:10:08', '2025-08-05 10:10:08', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('CT4', 'CT4', 'CT4号站台', 4, 0, 1, 'CHECK_AREA_1', 1, NULL, NULL, '2025-08-05 10:10:22', '2025-08-05 10:10:22', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('P1', 'P1', 'P1捡选台', 3, 1, 1, 'PICK_AREA_1', 1, '', '', '2025-08-04 22:19:05', '2025-08-04 22:19:07', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('P2', 'P2', 'P2号站台', 0, 1, 1, 'PICK_AREA_1', 1, NULL, NULL, '2025-08-05 10:09:38', '2025-08-05 10:09:38', NULL);
INSERT INTO `t_app_convey_location` (`location_id`, `business_location_id`, `location_name`, `location_type`, `location_status`, `location_router`, `area_id`, `plc_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('P3', 'P3', 'P3号站台', 3, 1, 1, 'PICK_AREA_1', 1, NULL, NULL, '2025-08-05 10:09:51', '2025-08-05 10:09:51', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_convey_pick_stand
-- ----------------------------
DROP TABLE IF EXISTS `t_app_convey_pick_stand`;
CREATE TABLE `t_app_convey_pick_stand` (
`stand_id` varchar(64) NOT NULL COMMENT '站台号',
`stand_name` varchar(64) DEFAULT NULL COMMENT '站台名称',
`plc_id` int NOT NULL COMMENT '管辖的PLC',
`area_id` varchar(64) NOT NULL DEFAULT '-' COMMENT '区域号',
`stand_status` int NOT NULL COMMENT '站台状态',
`stand_type` int NOT NULL COMMENT '站台类型',
`router` int NOT NULL DEFAULT '0' COMMENT '路向',
`read_arrive_address` varchar(32) DEFAULT NULL COMMENT '读取到达数据地址',
`write_task_address` varchar(32) DEFAULT NULL COMMENT '写入任务地址',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`stand_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_convey_pick_stand
-- ----------------------------
BEGIN;
INSERT INTO `t_app_convey_pick_stand` (`stand_id`, `stand_name`, `plc_id`, `area_id`, `stand_status`, `stand_type`, `router`, `read_arrive_address`, `write_task_address`, `remark`) VALUES ('P01', '捡货站台01', 1, 'P', 1, 1, 0, 'DB300.0', 'DB301.0', '测试');
INSERT INTO `t_app_convey_pick_stand` (`stand_id`, `stand_name`, `plc_id`, `area_id`, `stand_status`, `stand_type`, `router`, `read_arrive_address`, `write_task_address`, `remark`) VALUES ('P02', '捡货2', 3, 'R', 0, 0, 1, NULL, NULL, '测绘');
INSERT INTO `t_app_convey_pick_stand` (`stand_id`, `stand_name`, `plc_id`, `area_id`, `stand_status`, `stand_type`, `router`, `read_arrive_address`, `write_task_address`, `remark`) VALUES ('P3', '捡选站台2', 1, 'A1', 1, 0, 1, '555', '', '');
INSERT INTO `t_app_convey_pick_stand` (`stand_id`, `stand_name`, `plc_id`, `area_id`, `stand_status`, `stand_type`, `router`, `read_arrive_address`, `write_task_address`, `remark`) VALUES ('P5', '捡选站台5', 1, 'A1', 1, 1, 1, '5675', '7575', '沿途与他');
COMMIT;
-- ----------------------------
-- Table structure for t_app_convey_task
-- ----------------------------
DROP TABLE IF EXISTS `t_app_convey_task`;
CREATE TABLE `t_app_convey_task` (
`task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务号',
`task_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务组',
`task_type` int NOT NULL COMMENT '任务类型:\n1 - 捡选;\n2 - 复核;\n3 - 发货;\n4 - 补货;',
`vehicle_no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号',
`order_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '订单号',
`location` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '目的位置',
`size` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '尺寸',
`weight` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT '重量',
`length` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`width` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`height` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`task_status` int NOT NULL COMMENT '任务状态:\n0 - 新创建;\n1 - 已打印;\n2 - 输送中;\n3 - 已到达;\n4 - 任务异常;\n5 - 任务超时;\n6 - 任务取消;',
`task_source` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务来源',
`create_person` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '创建人',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`plc_id` int NOT NULL COMMENT 'plc 任务号',
`arrive_location` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '到达位置',
`arrive_time` datetime DEFAULT NULL COMMENT '到达时间',
`complete_time` datetime DEFAULT NULL COMMENT '完成时间',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`task_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_convey_task
-- ----------------------------
BEGIN;
INSERT INTO `t_app_convey_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1735021962748010000', '78412W24122300002', 1, 'SF1649488540362', '78412S230314000006', '-', 'DTT05', 12.6400, 0.0000, 0.0000, 0.0000, 3, 'WMS', 'WMS', '2024-12-24 14:32:43', '2025-09-19 12:33:27', 113973, '101', '2025-09-17 17:03:12', '2025-09-19 12:33:27', '用户developer 完成任务到达位置101');
INSERT INTO `t_app_convey_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1735021962760010000', '78412W24122300002', 1, 'SF1613717093943', '78412S230314000009', '', 'DTT11', 2.2200, 0.0000, 0.0000, 0.0000, 6, 'WMS', 'WMS', '2024-12-24 14:32:43', '2025-09-19 12:33:40', 113974, NULL, NULL, '2025-09-19 12:33:40', '用户developer 取消任务');
INSERT INTO `t_app_convey_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1758118835311010000', '1758118835311010000', 1, 'BOX0001', NULL, 'A01-09', '0', 0.0000, 0.0000, 0.0000, 0.0000, 0, 'WCS', 'developer', '2025-09-17 22:20:35', '2025-09-17 22:20:35', 100007, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_convey_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1758119005329010000', '1758119005329010000', 2, 'B0003', NULL, 'FH01', '0', 0.0000, 0.0000, 0.0000, 0.0000, 0, 'WCS', 'developer', '2025-09-17 22:23:25', '2025-09-17 22:23:25', 100008, NULL, NULL, NULL, NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_convey_task_bak
-- ----------------------------
DROP TABLE IF EXISTS `t_app_convey_task_bak`;
CREATE TABLE `t_app_convey_task_bak` (
`task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务号',
`task_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务组',
`task_type` int NOT NULL COMMENT '任务类型',
`vehicle_no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号',
`order_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '订单号',
`location` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT '目的位置',
`size` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '尺寸',
`weight` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT '重量',
`length` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`width` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`height` decimal(10,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`task_status` int NOT NULL COMMENT '任务状态',
`task_source` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务来源',
`create_person` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '创建人',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`plc_id` int NOT NULL COMMENT 'plc 任务号',
`arrive_location` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '到达位置',
`arrive_time` datetime DEFAULT NULL COMMENT '到达时间',
`complete_time` datetime DEFAULT NULL COMMENT '完成时间',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`task_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_convey_task_bak
-- ----------------------------
BEGIN;
INSERT INTO `t_app_convey_task_bak` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1735021962748016600', '78412W24122300002', 1, 'SF1649488540362', '78412S230314000006', '-', 'DTT05', 12.6400, 0.0000, 0.0000, 0.0000, 3, 'WMS', 'WMS', '2024-12-24 14:32:43', '2025-09-19 12:33:27', 113973, '101', '2025-09-17 17:03:12', '2025-09-19 12:33:27', '用户developer 完成任务到达位置101');
INSERT INTO `t_app_convey_task_bak` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1735021962760066000', '78412W24122300002', 1, 'SF1613717093943', '78412S230314000009', '', 'DTT11', 2.2200, 0.0000, 0.0000, 0.0000, 6, 'WMS', 'WMS', '2024-12-24 14:32:43', '2025-09-19 12:33:40', 113974, NULL, NULL, '2025-09-19 12:33:40', '用户developer 取消任务');
INSERT INTO `t_app_convey_task_bak` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1735021962765510000', '78412W24122300002', 1, 'SF1613717093943', '78412S230314000009', '', 'DTT11', 2.2200, 0.0000, 0.0000, 0.0000, 6, 'WMS', 'WMS', '2024-12-24 14:32:43', '2025-09-19 12:33:40', 113974, NULL, NULL, '2025-09-19 12:33:40', '用户developer 取消任务');
INSERT INTO `t_app_convey_task_bak` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1735021965555010000', '78412W24122300002', 1, 'SF1649488540362', '78412S230314000006', '-', 'DTT05', 12.6400, 0.0000, 0.0000, 0.0000, 3, 'WMS', 'WMS', '2024-12-24 14:32:43', '2025-09-19 12:33:27', 113973, '101', '2025-09-17 17:03:12', '2025-09-19 12:33:27', '用户developer 完成任务到达位置101');
INSERT INTO `t_app_convey_task_bak` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1758118835311660000', '1758118835311010000', 1, 'BOX0001', NULL, 'A01-09', '0', 0.0000, 0.0000, 0.0000, 0.0000, 0, 'WCS', 'developer', '2025-09-17 22:20:35', '2025-09-17 22:20:35', 100007, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_convey_task_bak` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1758118835511010000', '1758118835311010000', 1, 'BOX0001', NULL, 'A01-09', '0', 0.0000, 0.0000, 0.0000, 0.0000, 0, 'WCS', 'developer', '2025-09-17 22:20:35', '2025-09-17 22:20:35', 100007, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_convey_task_bak` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1758119005329550000', '1758119005329010000', 2, 'B0003', NULL, 'FH01', '0', 0.0000, 0.0000, 0.0000, 0.0000, 0, 'WCS', 'developer', '2025-09-17 22:23:25', '2025-09-17 22:23:25', 100008, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_convey_task_bak` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `size`, `weight`, `length`, `width`, `height`, `task_status`, `task_source`, `create_person`, `create_time`, `update_time`, `plc_id`, `arrive_location`, `arrive_time`, `complete_time`, `remark`) VALUES ('1758119005669010000', '1758119005329010000', 2, 'B0003', NULL, 'FH01', '0', 0.0000, 0.0000, 0.0000, 0.0000, 0, 'WCS', 'developer', '2025-09-17 22:23:25', '2025-09-17 22:23:25', 100008, NULL, NULL, NULL, NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_convey_task_event
-- ----------------------------
DROP TABLE IF EXISTS `t_app_convey_task_event`;
CREATE TABLE `t_app_convey_task_event` (
`record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`record_time` datetime NOT NULL,
`tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_convey_task_event
-- ----------------------------
BEGIN;
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1733976686651010000', '416', '2024-12-12 12:11:27', NULL, 'WCS界面状态修改为3');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1733981858466010000', '172', '2024-12-12 13:37:38', NULL, 'WCS界面状态修改为8');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1733981965679010000', '721', '2024-12-12 13:39:26', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1733982175089010000', '721', '2024-12-12 13:42:55', NULL, 'WCS界面状态修改为1');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1733982585489010000', '721', '2024-12-12 13:49:45', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845660118010000', '111222', '2024-12-22 13:34:20', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845822639010000', '111', '2024-12-22 13:37:03', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1735778137582010000', '1735021962748010000', '2025-01-02 08:35:38', NULL, 'WCS界面状态修改为1');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1735778137653010000', '1735021962760010000', '2025-01-02 08:35:38', NULL, 'WCS界面状态修改为1');
INSERT INTO `t_app_convey_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1735778145850010000', '1735021962748010000', '2025-01-02 08:35:46', NULL, 'WCS界面状态修改为9');
COMMIT;
-- ----------------------------
-- Table structure for t_app_convey_task_event_bak
-- ----------------------------
DROP TABLE IF EXISTS `t_app_convey_task_event_bak`;
CREATE TABLE `t_app_convey_task_event_bak` (
`record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`record_time` datetime NOT NULL,
`tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_convey_task_event_bak
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for t_app_etag_controller_info
-- ----------------------------
DROP TABLE IF EXISTS `t_app_etag_controller_info`;
CREATE TABLE `t_app_etag_controller_info` (
`controller_id` int NOT NULL COMMENT '控制器ID',
`controller_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '控制器名称',
`controller_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '控制器型号',
`controller_status` int NOT NULL COMMENT '状态',
`ip` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '控制器IP地址',
`port` int NOT NULL COMMENT '控制器端口',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`controller_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_etag_controller_info
-- ----------------------------
BEGIN;
INSERT INTO `t_app_etag_controller_info` (`controller_id`, `controller_name`, `controller_type`, `controller_status`, `ip`, `port`, `create_time`, `update_time`, `remark`) VALUES (1, '补货琉璃货架', '上尚', 1, '192.168.110.222', 4660, '2024-10-23 10:42:33', '2025-11-12 04:17:28', '56567');
INSERT INTO `t_app_etag_controller_info` (`controller_id`, `controller_name`, `controller_type`, `controller_status`, `ip`, `port`, `create_time`, `update_time`, `remark`) VALUES (3, '测试控制器', '上尚', 0, '192.168.0.102', 4660, '2025-11-03 15:51:17', '2025-11-03 15:51:17', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_etag_stock
-- ----------------------------
DROP TABLE IF EXISTS `t_app_etag_stock`;
CREATE TABLE `t_app_etag_stock` (
`location` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`goods_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`goods_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`batch` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`goods_num` decimal(10,2) NOT NULL DEFAULT '0.00',
`create_time` datetime NOT NULL,
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
PRIMARY KEY (`location`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_etag_stock
-- ----------------------------
BEGIN;
INSERT INTO `t_app_etag_stock` (`location`, `goods_id`, `goods_name`, `goods_type`, `batch`, `goods_num`, `create_time`, `remark`) VALUES ('1-1', 'box1', NULL, NULL, NULL, 0.00, '2024-11-20 19:27:09', NULL);
INSERT INTO `t_app_etag_stock` (`location`, `goods_id`, `goods_name`, `goods_type`, `batch`, `goods_num`, `create_time`, `remark`) VALUES ('1-2', 'box2', NULL, NULL, NULL, 0.00, '2024-11-20 19:27:31', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_etag_tag_info
-- ----------------------------
DROP TABLE IF EXISTS `t_app_etag_tag_info`;
CREATE TABLE `t_app_etag_tag_info` (
`tag_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '标签名称',
`controller_id` int NOT NULL COMMENT '控制器ID',
`tag_id` int NOT NULL COMMENT '标签在控制器下的ID',
`tag_type` int NOT NULL COMMENT '标签的类型',
`business_type` int NOT NULL DEFAULT '0' COMMENT '业务类型\n0 - 普通;\n1 - 区域标签;\n2 - 巷道灯;',
`tunnel_no` varchar(32) NOT NULL COMMENT '巷道号',
`area_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '所属区域',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`tag_name`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_etag_tag_info
-- ----------------------------
BEGIN;
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-1', 1, 1, 1, 0, '12', '0003-1', '234');
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-10', 1, 10, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-100', 1, 100, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-101', 1, 101, 6, 0, '234', 'ADD', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-102', 1, 102, 6, 0, '', 'ADD', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-103', 1, 103, 6, 0, '', 'ADD', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-104', 1, 104, 6, 0, '', 'ADD', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-105', 1, 105, 6, 0, '请勿', 'ADD', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-106', 1, 106, 6, 0, '', 'ADD', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-107', 1, 107, 6, 0, '', 'ADD', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-108', 1, 108, 6, 0, '', 'ADD', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-109', 1, 109, 6, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-11', 1, 11, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-110', 1, 110, 6, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-111', 1, 111, 3, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-112', 1, 112, 3, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-12', 1, 12, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-13', 1, 13, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-14', 1, 14, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-15', 1, 15, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-16', 1, 16, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-17', 1, 17, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-18', 1, 18, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-19', 1, 19, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-2', 1, 2, 1, 0, '-', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-20', 1, 20, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-21', 1, 21, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-22', 1, 22, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-23', 1, 23, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-24', 1, 24, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-25', 1, 25, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-26', 1, 26, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-27', 1, 27, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-28', 1, 28, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-29', 1, 29, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-30', 1, 30, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-31', 1, 31, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-32', 1, 32, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-33', 1, 33, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-34', 1, 34, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-35', 1, 35, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-36', 1, 36, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-37', 1, 37, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-38', 1, 38, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-39', 1, 39, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-4', 1, 4, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-40', 1, 40, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-41', 1, 41, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-42', 1, 42, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-43', 1, 43, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-44', 1, 44, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-45', 1, 45, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-46', 1, 46, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-47', 1, 47, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-48', 1, 48, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-49', 1, 49, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-5', 1, 5, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-50', 1, 50, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-51', 1, 51, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-52', 1, 52, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-53', 1, 53, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-54', 1, 54, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-55', 1, 55, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-56', 1, 56, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-57', 1, 57, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-58', 1, 58, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-59', 1, 59, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-6', 1, 6, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-60', 1, 60, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-61', 1, 61, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-62', 1, 62, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-63', 1, 63, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-64', 1, 64, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-65', 1, 65, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-66', 1, 66, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-67', 1, 67, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-68', 1, 68, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-69', 1, 69, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-7', 1, 7, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-70', 1, 70, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-71', 1, 71, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-72', 1, 72, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-73', 1, 73, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-74', 1, 74, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-75', 1, 75, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-76', 1, 76, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-77', 1, 77, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-78', 1, 78, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-79', 1, 79, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-8', 1, 8, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-80', 1, 80, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-81', 1, 81, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-82', 1, 82, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-83', 1, 83, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-84', 1, 84, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-85', 1, 85, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-86', 1, 86, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-87', 1, 87, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-88', 1, 88, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-89', 1, 89, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-9', 1, 9, 1, 0, '', '0003-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-90', 1, 90, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-91', 1, 91, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-92', 1, 92, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-93', 1, 93, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-94', 1, 94, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-95', 1, 95, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-96', 1, 96, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-97', 1, 97, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-98', 1, 98, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('A1-99', 1, 99, 1, 0, '', '0004-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-1', 2, 1, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-10', 2, 10, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-100', 2, 100, 1, 0, '', 'EmptyBox', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-101', 2, 101, 1, 0, '', 'EmptyBox', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-102', 2, 102, 1, 0, '', 'EmptyBox', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-103', 2, 103, 6, 0, '', '0001-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-104', 2, 104, 6, 0, '', '0002-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-105', 2, 105, 6, 0, '', '0001-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-106', 2, 106, 6, 0, '', '0002-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-107', 2, 107, 6, 0, '', 'EmptyBox', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-108', 2, 108, 3, 0, '', '0001-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-109', 2, 109, 3, 0, '', '0002-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-11', 2, 11, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-110', 2, 110, 3, 0, '', '0001-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-111', 2, 111, 3, 0, '', '0002-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-112', 2, 112, 4, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-113', 2, 113, 4, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-12', 2, 12, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-13', 2, 13, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-14', 2, 14, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-15', 2, 15, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-16', 2, 16, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-17', 2, 17, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-18', 2, 18, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-19', 2, 19, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-2', 2, 2, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-20', 2, 20, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-21', 2, 21, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-22', 2, 22, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-23', 2, 23, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-24', 2, 24, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-25', 2, 25, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-26', 2, 26, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-27', 2, 27, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-28', 2, 28, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-29', 2, 29, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-3', 2, 3, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-30', 2, 30, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-31', 2, 31, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-32', 2, 32, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-33', 2, 33, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-34', 2, 34, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-35', 2, 35, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-36', 2, 36, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-37', 2, 37, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-38', 2, 38, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-39', 2, 39, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-4', 2, 4, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-40', 2, 40, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-41', 2, 41, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-42', 2, 42, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-43', 2, 43, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-44', 2, 44, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-45', 2, 45, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-46', 2, 46, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-47', 2, 47, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-48', 2, 48, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-49', 2, 49, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-5', 2, 5, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-50', 2, 50, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-51', 2, 51, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-52', 2, 52, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-53', 2, 53, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-54', 2, 54, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-55', 2, 55, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-56', 2, 56, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-57', 2, 57, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-58', 2, 58, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-59', 2, 59, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-6', 2, 6, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-60', 2, 60, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-61', 2, 61, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-62', 2, 62, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-63', 2, 63, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-64', 2, 64, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-65', 2, 65, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-66', 2, 66, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-67', 2, 67, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-68', 2, 68, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-69', 2, 69, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-7', 2, 7, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-70', 2, 70, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-71', 2, 71, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-72', 2, 72, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-73', 2, 73, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-74', 2, 74, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-75', 2, 75, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-76', 2, 76, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-77', 2, 77, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-78', 2, 78, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-79', 2, 79, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-8', 2, 8, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-80', 2, 80, 1, 0, '', '0003-1-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-81', 2, 81, 1, 0, '', '0001-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-82', 2, 82, 1, 0, '', '0001-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-83', 2, 83, 1, 0, '', '0001-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-84', 2, 84, 1, 0, '', '0001-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-85', 2, 85, 1, 0, '', '0002-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-86', 2, 86, 1, 0, '', '0002-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-87', 2, 87, 1, 0, '', '0002-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-88', 2, 88, 1, 0, '', '0002-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-89', 2, 89, 1, 0, '', '0001-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-9', 2, 9, 1, 0, '', '0003-1-1', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-90', 2, 90, 1, 0, '', '0001-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-91', 2, 91, 1, 0, '', '0001-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-92', 2, 92, 1, 0, '', '0001-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-93', 2, 93, 1, 0, '', '0002-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-94', 2, 94, 1, 0, '', '0002-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-95', 2, 95, 1, 0, '', '0002-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-96', 2, 96, 1, 0, '', '0002-2', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-97', 2, 97, 1, 0, '', 'EmptyBox', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-98', 2, 98, 1, 0, '', 'EmptyBox', NULL);
INSERT INTO `t_app_etag_tag_info` (`tag_name`, `controller_id`, `tag_id`, `tag_type`, `business_type`, `tunnel_no`, `area_id`, `remark`) VALUES ('B1-99', 2, 99, 1, 0, '', 'EmptyBox', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_etag_tag_location
-- ----------------------------
DROP TABLE IF EXISTS `t_app_etag_tag_location`;
CREATE TABLE `t_app_etag_tag_location` (
`record_id` varchar(64) NOT NULL COMMENT '记录号',
`location` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '库位',
`tag_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '标签名称',
`location_type` int NOT NULL COMMENT '站台类型',
`stand` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '站台:供输送线配合使用',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_etag_tag_location
-- ----------------------------
BEGIN;
INSERT INTO `t_app_etag_tag_location` (`record_id`, `location`, `tag_name`, `location_type`, `stand`, `remark`) VALUES ('1766470737254010000', '1-102', '2233', 1, '66', '9090');
COMMIT;
-- ----------------------------
-- Table structure for t_app_etag_task
-- ----------------------------
DROP TABLE IF EXISTS `t_app_etag_task`;
CREATE TABLE `t_app_etag_task` (
`task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务号',
`task_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '任务组',
`task_type` int NOT NULL COMMENT '任务类型',
`vehicle_no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号',
`order_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '订单号',
`location` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '库位',
`goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '物料编号',
`goods_name` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '物料名称',
`light_num` decimal(10,2) NOT NULL COMMENT '点亮数量',
`confirm_num` decimal(10,2) DEFAULT NULL COMMENT '确认数量',
`task_status` int NOT NULL COMMENT '任务状态',
`light_model` int NOT NULL DEFAULT '1' COMMENT '点亮模式:\n1 - 立即点亮;\n2 - 暂存待触发;',
`task_source` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '任务来源',
`create_person` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '创建人',
`create_time` datetime NOT NULL COMMENT '创建时间',
`light_time` datetime DEFAULT NULL COMMENT '点亮时间',
`confirm_time` datetime DEFAULT NULL COMMENT '确认时间',
`confirm_person` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '确认人',
`completed_time` datetime DEFAULT NULL COMMENT '完成时间',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`task_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_etag_task
-- ----------------------------
BEGIN;
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('0000001465', '78412W24122300002', 1, 'SF1649488540362', '78412S230314000006', 'GZ-J2-01-04-03', '3110246', '消毒液1.8L', 6.00, NULL, 1, 0, 'WMS_API', 'WMS', '2024-12-24 14:32:43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('0000001466', '78412W24122300002', 1, 'SF1613717093943', '78412S230314000009', 'GZ-J2-01-04-03', '3110246', '消毒液1.8L', 1.00, NULL, 9, 0, 'WMS_API', 'WMS', '2024-12-24 14:32:43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('00000gdfgd', '78412W24122300002', 1, 'SF1613717093943', '78412S230314000009', 'GZ-J2-01-04-03', '3110246', '消毒液1.8L', 1.00, NULL, 9, 0, 'WMS_API', 'WMS', '2024-12-24 14:32:43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('1766646518792010000', '1766646518792010000', 1, 'V0001', '7878', 'L-0101', '555', 'yyy', 1.00, NULL, 1, 1, '', 'dev', '2025-12-25 15:08:39', NULL, NULL, NULL, NULL, '1111');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('fghfghfgh', '011', 1, 'SF3131742242758', '54', 'C1-L2-03', '454321', '123131', 50.00, 50.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 16:34:56', '2024-12-22 16:35:40', '192.168.110.223', '2024-12-14 14:24:38', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('srewrwerwer', 'TS00002517', 3, '-', '3205967', 'GZ-J1-01-03-03', '6974214220087', '001 3只', 120.00, NULL, 9, 0, 'WMS', 'WMS_API', '2024-12-25 10:28:05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('T00004', '011', 3, 'SF3131742242758', '54', 'B1-L2-04', 'G0001', '一杯水', 500.00, 5002.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 16:36:48', '2024-12-22 16:37:02', '192.168.110.222', '2024-12-14 14:24:38', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('T00004dfgdfgdf', '011', 3, 'SF3131742242758', '54', 'B1-L2-04', 'G0001', '一杯水', 500.00, 5002.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 16:36:48', '2024-12-22 16:37:02', '192.168.110.222', '2024-12-14 14:24:38', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('T00005', '011', 3, 'SF3131742242758', '54', 'B1-L2-06', 'G0002', '一瓶茶', 500.00, 5002.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 16:36:47', '2024-12-22 16:37:09', '192.168.110.222', '2024-12-14 14:24:38', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('T001', '011', 1, 'SF3131742242758', '54', 'C1-L2-03', '454321', '123131', 50.00, 50.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 16:34:56', '2024-12-22 16:35:40', '192.168.110.223', '2024-12-14 14:24:38', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('T002', '011', 1, 'SF3131742242758', '54', 'A1-07', '454321', '123131', 400.00, 400.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 13:53:23', '2024-12-22 13:53:28', '192.168.110.223', '2024-11-28 19:35:35', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('T003', '011', 1, 'SF3131742242758', '54', 'B1-L2-03', '454321', '123131', 20.00, 20.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 16:34:56', '2024-12-22 16:35:49', '192.168.110.222', '2024-12-14 14:24:38', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('T00hfgjgfjjh', '011', 3, 'SF3131742242758', '54', 'B1-L2-06', 'G0002', '一瓶茶', 500.00, 5002.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 16:36:47', '2024-12-22 16:37:09', '192.168.110.222', '2024-12-14 14:24:38', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('T0345456456', '011', 1, 'SF3131742242758', '54', 'A1-07', '454321', '123131', 400.00, 400.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 13:53:23', '2024-12-22 13:53:28', '192.168.110.223', '2024-11-28 19:35:35', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('Tghjghjghjghj', '011', 1, 'SF3131742242758', '54', 'B1-L2-03', '454321', '123131', 20.00, 20.00, 2, 0, '245', '4545', '2024-12-11 19:35:05', '2024-12-22 16:34:56', '2024-12-22 16:35:49', '192.168.110.222', '2024-12-14 14:24:38', 'QQ');
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('TS00002517', 'TS00002517', 3, '-', '3205967', 'GZ-J1-01-03-03', '6974214220087', '001 3只', 120.00, NULL, 9, 0, 'WMS', 'WMS_API', '2024-12-25 10:28:05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `t_app_etag_task` (`task_id`, `task_group`, `task_type`, `vehicle_no`, `order_id`, `location`, `goods_id`, `goods_name`, `light_num`, `confirm_num`, `task_status`, `light_model`, `task_source`, `create_person`, `create_time`, `light_time`, `confirm_time`, `confirm_person`, `completed_time`, `remark`) VALUES ('w23423423', '78412W24122300002', 1, 'SF1649488540362', '78412S230314000006', 'GZ-J2-01-04-03', '3110246', '消毒液1.8L', 6.00, NULL, 1, 0, 'WMS_API', 'WMS', '2024-12-24 14:32:43', NULL, NULL, NULL, NULL, NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_etag_task_bak
-- ----------------------------
DROP TABLE IF EXISTS `t_app_etag_task_bak`;
CREATE TABLE `t_app_etag_task_bak` (
`task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务号',
`task_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '任务组',
`task_type` int NOT NULL COMMENT '任务类型',
`vehicle_no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号',
`order_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '订单号',
`location` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '库位',
`goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '物料编号',
`goods_name` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '物料名称',
`light_num` decimal(10,2) NOT NULL COMMENT '点亮数量',
`task_status` int NOT NULL COMMENT '任务状态',
`task_source` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务来源',
`create_person` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '创建人',
`create_time` datetime NOT NULL COMMENT '创建时间',
`light_time` datetime DEFAULT NULL COMMENT '点亮时间',
`confirm_time` datetime DEFAULT NULL COMMENT '确认时间',
`confirm_num` decimal(10,2) DEFAULT NULL COMMENT '确认数量',
`confirm_person` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '确认人',
`completed_time` datetime DEFAULT NULL COMMENT '完成时间',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`task_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_etag_task_bak
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for t_app_etag_task_event
-- ----------------------------
DROP TABLE IF EXISTS `t_app_etag_task_event`;
CREATE TABLE `t_app_etag_task_event` (
`record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`record_time` datetime NOT NULL,
`tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_etag_task_event
-- ----------------------------
BEGIN;
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1733983209784010000', 'T002', '2024-12-12 14:00:10', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1733983214693010000', 'T002', '2024-12-12 14:00:15', NULL, 'WCS界面状态修改为1');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734001938910010000', 'T002', '2024-12-12 19:12:19', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734014796445010000', 'T001', '2024-12-12 22:46:36', NULL, 'WCS界面完成数量1');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734014918238010000', 'T001', '2024-12-12 22:48:38', NULL, 'WCS界面点击完成数量20');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734014949288010000', 'T001', '2024-12-12 22:49:09', NULL, 'WCS界面点击完成数量20');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734014992551010000', 'T001', '2024-12-12 22:49:53', NULL, 'WCS界面点击完成数量15');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734157477819010000', 'T001', '2024-12-14 14:24:38', NULL, 'WCS界面点击完成数量4545');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734840644745010000', 'T001', '2024-12-22 12:10:45', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734840647162010000', 'T002', '2024-12-22 12:10:47', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734840714897010000', 'T002', '2024-12-22 12:11:55', NULL, '系统触发点亮数量600.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734840731408010000', 'T002', '2024-12-22 12:12:11', NULL, '电子标签85确认确认数量595');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734840915088010000', 'T002', '2024-12-22 12:15:15', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841248899010000', 'T001', '2024-12-22 12:20:49', NULL, '电子标签85确认确认数量600');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841492760010000', 'T002', '2024-12-22 12:24:53', NULL, '系统触发点亮数量600.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841523280010000', 'T002', '2024-12-22 12:25:23', NULL, '电子标签93确认确认数量595');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841620257010000', 'T002', '2024-12-22 12:27:00', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841630124010000', 'T002', '2024-12-22 12:27:10', NULL, '系统触发点亮数量600.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841642075010000', 'T002', '2024-12-22 12:27:22', NULL, '电子标签93确认确认数量600');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841688751010000', 'T002', '2024-12-22 12:28:09', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841700628010000', 'T002', '2024-12-22 12:28:21', NULL, '系统触发点亮数量600.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841710414010000', 'T002', '2024-12-22 12:28:30', NULL, '电子标签93确认确认数量600');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841776755010000', 'T002', '2024-12-22 12:29:37', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841785156010000', 'T002', '2024-12-22 12:29:45', NULL, '系统触发点亮数量600.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734841792190010000', 'T002', '2024-12-22 12:29:52', NULL, '电子标签93确认确认数量600');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734842619445010000', 'T003', '2024-12-22 12:43:39', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734842622022010000', 'T001', '2024-12-22 12:43:42', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734842687409010000', 'T001', '2024-12-22 12:44:47', NULL, '系统触发点亮数量300.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734842687427010000', 'T003', '2024-12-22 12:44:47', NULL, '系统触发点亮数量500.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734842697180010000', 'T003', '2024-12-22 12:44:57', NULL, '电子标签11确认确认数量498');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734842708353010000', 'T001', '2024-12-22 12:45:08', NULL, '电子标签77确认确认数量294');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734843506986010000', 'T00004', '2024-12-22 12:58:27', NULL, '电子标签108确认确认数量000500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734843716400010000', 'T00005', '2024-12-22 13:01:56', NULL, '电子标签108确认确认数量000500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734843748833010000', 'T00004', '2024-12-22 13:02:29', NULL, '电子标签108确认确认数量000500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734843762299010000', 'T00005', '2024-12-22 13:02:42', NULL, '电子标签108确认确认数量494');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734843793101010000', 'T00004', '2024-12-22 13:03:13', NULL, '电子标签108确认确认数量000500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734843796467010000', 'T00005', '2024-12-22 13:03:16', NULL, '电子标签108确认确认数量000500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845363050010000', 'T001', '2024-12-22 13:29:23', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845365281010000', 'T002', '2024-12-22 13:29:25', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845367492010000', 'T003', '2024-12-22 13:29:27', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845381872010000', 'T002', '2024-12-22 13:29:42', NULL, '系统触发点亮数量400.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845392860010000', 'T002', '2024-12-22 13:29:53', NULL, '电子标签93确认确认数量400');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845398181010000', 'T00004', '2024-12-22 13:29:58', NULL, '电子标签106确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845438042010000', 'T002', '2024-12-22 13:30:38', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845447492010000', 'T002', '2024-12-22 13:30:47', NULL, '系统触发点亮数量400.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845458811010000', 'T002', '2024-12-22 13:30:59', NULL, '电子标签93确认确认数量395');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845468780010000', 'T00004', '2024-12-22 13:31:09', NULL, '电子标签106确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845526373010000', 'T00004', '2024-12-22 13:32:06', NULL, '电子标签110确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845533469010000', 'T001', '2024-12-22 13:32:13', NULL, '系统触发点亮数量300.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845535016010000', 'T003', '2024-12-22 13:32:15', NULL, '系统触发点亮数量500.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845546756010000', 'T001', '2024-12-22 13:32:27', NULL, '电子标签77确认确认数量297');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845552714010000', 'T003', '2024-12-22 13:32:33', NULL, '电子标签11确认确认数量498');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845557563010000', 'T00004', '2024-12-22 13:32:38', NULL, '电子标签109确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845597525010000', 'T00004', '2024-12-22 13:33:18', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845599287010000', 'T00005', '2024-12-22 13:33:19', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845615175010000', 'T00004', '2024-12-22 13:33:35', NULL, '电子标签108确认确认数量000500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845618573010000', 'T00005', '2024-12-22 13:33:39', NULL, '电子标签108确认确认数量000500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845692760010000', 'T00004', '2024-12-22 13:34:53', NULL, '电子标签101确认确认数量1');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845694223010000', 'T00004', '2024-12-22 13:34:54', NULL, '电子标签107确认确认数量000001');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845843408010000', 'T00004', '2024-12-22 13:37:23', NULL, '电子标签101确认确认数量1');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845844220010000', 'T00004', '2024-12-22 13:37:24', NULL, '电子标签107确认确认数量000001');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845864611010000', 'T001', '2024-12-22 13:37:45', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845866567010000', 'T002', '2024-12-22 13:37:47', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845868405010000', 'T003', '2024-12-22 13:37:48', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845879472010000', 'T002', '2024-12-22 13:37:59', NULL, '系统触发点亮数量400.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845891327010000', 'T002', '2024-12-22 13:38:11', NULL, '电子标签93确认确认数量380');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734845894263010000', 'T00004', '2024-12-22 13:38:14', NULL, '电子标签106确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846064468010000', 'T001', '2024-12-22 13:41:04', NULL, '系统触发点亮数量300.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846067298010000', 'T003', '2024-12-22 13:41:07', NULL, '系统触发点亮数量500.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846073921010000', 'T003', '2024-12-22 13:41:14', NULL, '电子标签11确认确认数量500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846076453010000', 'T001', '2024-12-22 13:41:16', NULL, '电子标签77确认确认数量300');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846084382010000', 'T00004', '2024-12-22 13:41:24', NULL, '电子标签109确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846235728010000', 'T002', '2024-12-22 13:43:56', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846279088010000', 'T002', '2024-12-22 13:44:39', NULL, '系统触发点亮数量400.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846285368010000', 'T002', '2024-12-22 13:44:45', NULL, '电子标签93确认确认数量400');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846289000010000', 'T00004', '2024-12-22 13:44:49', NULL, '电子标签106确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846322402010000', 'T002', '2024-12-22 13:45:22', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846331040010000', 'T002', '2024-12-22 13:45:31', NULL, '系统触发点亮数量400.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846337256010000', 'T002', '2024-12-22 13:45:37', NULL, '电子标签93确认确认数量400');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846341604010000', 'T00004', '2024-12-22 13:45:42', NULL, '电子标签106确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846357368010000', 'T001', '2024-12-22 13:45:57', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846359731010000', 'T003', '2024-12-22 13:46:00', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846397534010000', 'T001', '2024-12-22 13:46:38', NULL, '系统触发点亮数量300.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846397543010000', 'T003', '2024-12-22 13:46:38', NULL, '系统触发点亮数量500.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846402962010000', 'T003', '2024-12-22 13:46:43', NULL, '电子标签11确认确认数量500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846406524010000', 'T001', '2024-12-22 13:46:47', NULL, '电子标签77确认确认数量300');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846413671010000', 'T00004', '2024-12-22 13:46:54', NULL, '电子标签109确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846457091010000', 'T001', '2024-12-22 13:47:37', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846459127010000', 'T003', '2024-12-22 13:47:39', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846470044010000', 'T001', '2024-12-22 13:47:50', NULL, '系统触发点亮数量300.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846470054010000', 'T003', '2024-12-22 13:47:50', NULL, '系统触发点亮数量500.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846476669010000', 'T001', '2024-12-22 13:47:57', NULL, '电子标签77确认确认数量300');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846482434010000', 'T003', '2024-12-22 13:48:02', NULL, '电子标签11确认确认数量500');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846488434010000', 'T00004', '2024-12-22 13:48:08', NULL, '电子标签109确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846789846010000', 'T002', '2024-12-22 13:53:10', NULL, 'WCS界面状态修改为0');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846802580010000', 'T002', '2024-12-22 13:53:23', NULL, '系统触发点亮数量400.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846808053010000', 'T002', '2024-12-22 13:53:28', NULL, '电子标签95确认确认数量400');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734846811571010000', 'T00004', '2024-12-22 13:53:32', NULL, '电子标签106确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734855376529010000', 'T00004', '2024-12-22 16:16:17', NULL, '电子标签107确认确认数量0005002');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734855380588010000', 'T00005', '2024-12-22 16:16:21', NULL, '电子标签107确认确认数量0005002');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734855513905010000', 'T00004', '2024-12-22 16:18:34', NULL, '电子标签107确认确认数量0005002');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734855522204010000', 'T00005', '2024-12-22 16:18:42', NULL, '电子标签107确认确认数量0005002');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734855559927010000', 'T001', '2024-12-22 16:19:20', NULL, '系统触发点亮数量300.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734855577313010000', 'T001', '2024-12-22 16:19:37', NULL, '电子标签90确认确认数量290');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734855580170010000', 'T00004', '2024-12-22 16:19:40', NULL, '电子标签110确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734856495726010000', 'T003', '2024-12-22 16:34:56', NULL, '系统触发点亮数量20.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734856495736010000', 'T001', '2024-12-22 16:34:56', NULL, '系统触发点亮数量50.00');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734856540150010000', 'T001', '2024-12-22 16:35:40', NULL, '电子标签68确认确认数量50');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734856548830010000', 'T003', '2024-12-22 16:35:49', NULL, '电子标签68确认确认数量20');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734856553829010000', 'T00004', '2024-12-22 16:35:54', NULL, '电子标签109确认确认数量000000');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734856621694010000', 'T00004', '2024-12-22 16:37:02', NULL, '电子标签105确认确认数量0005002');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1734856629086010000', 'T00005', '2024-12-22 16:37:09', NULL, '电子标签106确认确认数量0005002');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1735093684715010000', 'TS00002517', '2024-12-25 10:28:05', '', '任务创建');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1736986896494010000', 'TS00002517', '2025-01-16 08:21:37', NULL, 'WCS界面状态修改为1');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1736986900670010000', '0000001465', '2025-01-16 08:21:41', NULL, 'WCS界面状态修改为1');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1736986912890010000', 'TS00002517', '2025-01-16 08:21:53', NULL, 'WCS界面状态修改为9');
INSERT INTO `t_app_etag_task_event` (`record_id`, `task_id`, `record_time`, `tag`, `msg`) VALUES ('1736986912901010000', '0000001466', '2025-01-16 08:21:53', NULL, 'WCS界面状态修改为9');
COMMIT;
-- ----------------------------
-- Table structure for t_app_etag_task_event_bak
-- ----------------------------
DROP TABLE IF EXISTS `t_app_etag_task_event_bak`;
CREATE TABLE `t_app_etag_task_event_bak` (
`record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`record_time` datetime NOT NULL,
`tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_etag_task_event_bak
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for t_app_quartz_config
-- ----------------------------
DROP TABLE IF EXISTS `t_app_quartz_config`;
CREATE TABLE `t_app_quartz_config` (
`class_name` varchar(64) NOT NULL COMMENT '定时任务类名称',
`job_desc` varchar(255) DEFAULT NULL COMMENT '定时任务描述',
`status` int NOT NULL COMMENT '是否开启',
`cron` varchar(64) NOT NULL COMMENT 'cron表达式',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`class_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_quartz_config
-- ----------------------------
BEGIN;
INSERT INTO `t_app_quartz_config` (`class_name`, `job_desc`, `status`, `cron`, `create_time`, `update_time`, `remark`) VALUES ('CleanDataJob', '数据清理', 0, '5/2 * * * * ? *', '2025-05-20 09:04:24', '2025-09-03 09:25:11', NULL);
INSERT INTO `t_app_quartz_config` (`class_name`, `job_desc`, `status`, `cron`, `create_time`, `update_time`, `remark`) VALUES ('ExecuteStackerTaskJob', '执行堆垛机任务定时任务', 0, '5/1 * * * * ? *', '2025-07-04 13:20:40', '2025-09-03 09:25:28', NULL);
INSERT INTO `t_app_quartz_config` (`class_name`, `job_desc`, `status`, `cron`, `create_time`, `update_time`, `remark`) VALUES ('ResolveStockTaskJob', '解析仓库任务', 0, '2/2 * * * * ? *', '2025-09-03 09:25:01', '2025-10-07 15:19:17', NULL);
INSERT INTO `t_app_quartz_config` (`class_name`, `job_desc`, `status`, `cron`, `create_time`, `update_time`, `remark`) VALUES ('RetryApiRequestJob', '接口重试定时任务', 0, '5/2 * * * * ? *', '2025-09-16 11:34:41', '2025-09-16 11:34:56', NULL);
INSERT INTO `t_app_quartz_config` (`class_name`, `job_desc`, `status`, `cron`, `create_time`, `update_time`, `remark`) VALUES ('TestQuartzJob', '测试2', 0, '0/2 * * * * ? *', '2025-05-20 09:05:16', '2025-05-21 08:04:01', '-');
INSERT INTO `t_app_quartz_config` (`class_name`, `job_desc`, `status`, `cron`, `create_time`, `update_time`, `remark`) VALUES ('TrayConveyJob', '托盘线定时任务', 0, '5/2 * * * * ? *', '2025-12-22 17:24:33', '2025-12-22 17:24:39', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_record_api_request
-- ----------------------------
DROP TABLE IF EXISTS `t_app_record_api_request`;
CREATE TABLE `t_app_record_api_request` (
`record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '记录号',
`api_key` varchar(64) DEFAULT NULL COMMENT 'API键',
`request_url` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '请求路径名称',
`success` int NOT NULL COMMENT '是否成功',
`method` char(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '请求方法',
`url_param` text COMMENT 'url参数',
`request_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '请求数据',
`response_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '响应数据',
`request_time` datetime NOT NULL COMMENT '请求时间',
`response_time` datetime NOT NULL COMMENT '响应时间',
`use_time` decimal(10,4) DEFAULT NULL COMMENT '耗时',
`err_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '错误信息',
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_record_api_request
-- ----------------------------
BEGIN;
INSERT INTO `t_app_record_api_request` (`record_id`, `api_key`, `request_url`, `success`, `method`, `url_param`, `request_msg`, `response_msg`, `request_time`, `response_time`, `use_time`, `err_msg`) VALUES ('1735021962608010000', NULL, 'http://106.14.189.117:18080/datahubjson/FluxWmsWcsJsonApi/', 1, 'GET', '?method=requestWaveInfo&warehouseId=FLUXWMSDB&sign=80AC1A3F-F949-492C-A024-7044B28C8025&messageId=GETWAVE&apptoken=WCS&timeStemp=2024-12-24+14%3A32%3A41', '{\"organizationId\":\"MLSM\",\"waveNo\":\"78412W24122300002\",\"warehouseId\":666}', '{\"organizationId\":\"MLSM\",\"waveNo\":\"78412W24122300002\",\"warehouseId\":\"78412\",\"udf03\":\"\",\"udf02\":\"\",\"udf01\":\"\",\"customerId\":\"MANON\",\"waveDesc\":\"\",\"orders\":[{\"orderDetails\":[{\"brandDesc\":\"滴露\",\"quantity\":\"6.00000000\",\"pickLogicalSequence\":\"057\",\"udf03\":\"\",\"udf02\":\"\",\"udf01\":\"\",\"skuNo\":\"6974352530208\",\"skuDesc\":\"消毒液1.8L\",\"location\":\"GZ-J2-01-04-03\",\"sku\":\"3110246\",\"allocationDetailsId\":\"0000001465\"}],\"orderNo\":\"78412S230314000006\",\"seqNo\":\"1\",\"expressNo\":\"SF1649488540362\",\"boxNo\":\"DTT05\",\"udf03\":\"\",\"udf02\":\"\",\"udf01\":\"\",\"weight\":\"12.64000000\"},{\"orderDetails\":[{\"brandDesc\":\"滴露\",\"quantity\":\"1.00000000\",\"pickLogicalSequence\":\"057\",\"udf03\":\"\",\"udf02\":\"\",\"udf01\":\"\",\"skuNo\":\"6974352530208\",\"skuDesc\":\"消毒液1.8L\",\"location\":\"GZ-J2-01-04-03\",\"sku\":\"3110246\",\"allocationDetailsId\":\"0000001466\"}],\"orderNo\":\"78412S230314000009\",\"seqNo\":\"2\",\"expressNo\":\"SF1613717093943\",\"boxNo\":\"DTT11\",\"udf03\":\"\",\"udf02\":\"\",\"udf01\":\"\",\"weight\":\"2.22000000\"}]}', '2024-12-24 14:32:42', '2024-12-24 14:32:43', 173.0000, '');
INSERT INTO `t_app_record_api_request` (`record_id`, `api_key`, `request_url`, `success`, `method`, `url_param`, `request_msg`, `response_msg`, `request_time`, `response_time`, `use_time`, `err_msg`) VALUES ('1758270434676010000', '-', 'http://106.14.189.117:18080/api/test', 1, 'POST', NULL, '-', '{\"timestamp\":\"2025-09-19T08:27:14.694+00:00\",\"status\":404,\"error\":\"Not Found\",\"message\":\"\",\"path\":\"/logincenter/api/test\"}', '2025-09-19 16:27:15', '2025-09-19 16:27:15', 58.0000, '');
INSERT INTO `t_app_record_api_request` (`record_id`, `api_key`, `request_url`, `success`, `method`, `url_param`, `request_msg`, `response_msg`, `request_time`, `response_time`, `use_time`, `err_msg`) VALUES ('1758270586895010000', '-', 'http://106.14.189.117:18080/api/test', 1, 'POST', NULL, '{\"arriveLocation\":\"101\",\"message\":\"用户developer 回报任务完成到达位置101\",\"taskId\":\"1735021962748010000\",\"taskStatus\":2,\"taskType\":1,\"vehicleNo\":\"SF1649488540362\"}', '{\"timestamp\":\"2025-09-19T08:29:46.929+00:00\",\"status\":404,\"error\":\"Not Found\",\"message\":\"\",\"path\":\"/logincenter/api/test\"}', '2025-09-19 16:29:47', '2025-09-19 16:29:47', 55.0000, '');
INSERT INTO `t_app_record_api_request` (`record_id`, `api_key`, `request_url`, `success`, `method`, `url_param`, `request_msg`, `response_msg`, `request_time`, `response_time`, `use_time`, `err_msg`) VALUES ('1758508335988010000', '-', 'http://106.14.189.117:18080/api/test', 1, 'POST', NULL, '{\"message\":\"用户developer 回报任务取消\",\"taskId\":\"1735021962760066000\",\"taskStatus\":4,\"taskType\":1,\"vehicleNo\":\"SF1613717093943\"}', '{\"timestamp\":\"2025-09-22T02:32:16.063+00:00\",\"status\":404,\"error\":\"Not Found\",\"message\":\"\",\"path\":\"/logincenter/api/test\"}', '2025-09-22 10:32:16', '2025-09-22 10:32:16', 56.0000, '');
INSERT INTO `t_app_record_api_request` (`record_id`, `api_key`, `request_url`, `success`, `method`, `url_param`, `request_msg`, `response_msg`, `request_time`, `response_time`, `use_time`, `err_msg`) VALUES ('1758510839016010000', '-', 'http://106.14.189.117:18080/api/test', 1, 'POST', NULL, '{\"message\":\"用户developer 回报任务取消\",\"taskId\":\"1735021962748010000\",\"taskStatus\":4,\"taskType\":1,\"vehicleNo\":\"SF1649488540362\"}', '{\"timestamp\":\"2025-09-22T03:13:59.198+00:00\",\"status\":404,\"error\":\"Not Found\",\"message\":\"\",\"path\":\"/logincenter/api/test\"}', '2025-09-22 11:13:59', '2025-09-22 11:13:59', 51.0000, '');
INSERT INTO `t_app_record_api_request` (`record_id`, `api_key`, `request_url`, `success`, `method`, `url_param`, `request_msg`, `response_msg`, `request_time`, `response_time`, `use_time`, `err_msg`) VALUES ('1765597943214010000', '-', 'http://106.14.189.117:18080/api/test', 1, 'POST', NULL, '{\"arriveLocation\":\"101\",\"message\":\"用户developer 回报任务完成到达位置101\",\"taskId\":\"1735021962748010000\",\"taskStatus\":2,\"taskType\":1,\"vehicleNo\":\"SF1649488540362\"}', '{\"timestamp\":\"2025-12-13T03:52:23.111+00:00\",\"status\":404,\"error\":\"Not Found\",\"message\":\"\",\"path\":\"/logincenter/api/test\"}', '2025-12-13 11:52:23', '2025-12-13 11:52:23', 106.0000, '');
INSERT INTO `t_app_record_api_request` (`record_id`, `api_key`, `request_url`, `success`, `method`, `url_param`, `request_msg`, `response_msg`, `request_time`, `response_time`, `use_time`, `err_msg`) VALUES ('4578', NULL, '/test', 1, 'POST', NULL, '{111}', '{222}', '2024-12-12 14:02:14', '2024-12-12 14:02:17', 30.0000, '-');
COMMIT;
-- ----------------------------
-- Table structure for t_app_record_api_response
-- ----------------------------
DROP TABLE IF EXISTS `t_app_record_api_response`;
CREATE TABLE `t_app_record_api_response` (
`record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '记录号',
`path` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '被请求的路径',
`method` char(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '方法',
`url_param` text COMMENT 'URL参数',
`response_code` int DEFAULT NULL COMMENT '响应码',
`media_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '请求数据类型',
`client_address` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '请求方地址',
`header` text COMMENT '请求头',
`request_time` datetime NOT NULL COMMENT '请求时间',
`response_time` datetime NOT NULL COMMENT '响应时间',
`use_time` decimal(10,4) NOT NULL COMMENT '耗时',
`request_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '请求数据',
`response_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '响应数据',
`cookie` text COMMENT 'cookie',
`err_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '错误信息',
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_record_api_response
-- ----------------------------
BEGIN;
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('1', '/Users/Administrator/Pictures/img_209127.jpg', '2LMW8', NULL, NULL, 'oveYZP6so3', '3-9-15 Gakuenminami', NULL, '2024-09-22 02:58:03', '2002-09-01 02:44:44', 435.0141, 'Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. A mans best friends are his ten fingers. Champions keep playing until they get it right. What you get by achieving your goals is not as important as what you become by achieving your goals. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Flexible settings enable you to set up a custom key for comparison and synchronization. If you wait, all that happens is you get older. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Actually it is just in an idea when feel oneself can achieve and cannot achieve. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. You must be the change you wish to see in the world. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Difficult circumstances serve as a textbook of life for people. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. What you get by achieving your goals is not as important as what you become by achieving your goals. If the plan doesnt work, change the plan, but never the goal. The Synchronize to Database function will give you a full picture of all database differences. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Champions keep playing until they get it right. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The past has no power over the present moment. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. You must be the change you wish to see in the world. Success consists of going from failure to failure without loss of enthusiasm. You cannot save people, you can just love them. Optimism is the one quality more associated with success and happiness than any other. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each re
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('10', 'C:\\Users\\Administrator\\Pictures\\img_481649.jpg', 'evPQ7', NULL, NULL, 'V1ybumPfyT', 'No. 613, Shuangqing Rd, Chenghua District', NULL, '2022-11-26 04:19:13', '2019-10-11 14:38:19', 503.5157, 'Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. All journeys have secret destinations of which the traveler is unaware. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. There is no way to happiness. Happiness is the way. You cannot save people, you can just love them. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Anyone who has ever made anything of importance was disciplined. What you get by achieving your goals is not as important as what you become by achieving your goals. A mans best friends are his ten fingers. You will succeed because most people are lazy. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. You cannot save people, you can just love them. Navicat 15 has added support for the system-wide dark mode. You will succeed because most people are lazy. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat 15 has added support for the system-wide dark mode. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. What you get by achieving your goals is not as important as what you become by achieving your goals. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Remember that failure is an event, not a person. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. If opportunity doesnt knock, build a door. You cannot save people, you can just love them. Genius is an infinite capacity for taking pains. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If the plan doesnt work, change the plan, but never the goal. You must be the change you wish to see in the world. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. I will greet this day with love in my heart. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is anot
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('100', 'C:\\Users\\Administrator\\Pictures\\img_844387.jpg', 'mtNnA', NULL, NULL, '7i2jhokyEs', '1-7-19 Omido, Higashiosaka', NULL, '2021-01-29 03:34:36', '2002-03-23 19:04:11', 435.7898, 'It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. A man is not old until regrets take the place of dreams. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. The reason why a great man is great is that he resolves to be a great man. A query is used to extract data from the database in a readable format according to the user\'s request. A query is used to extract data from the database in a readable format according to the user\'s request. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. If it scares you, it might be a good thing to try. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. There is no way to happiness. Happiness is the way. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Remember that failure is an event, not a person. You cannot save people, you can just love them. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. I may not have gone where I intended to go, but I think I have ended up where I needed to be. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. What you get by achieving your goals is not as important as what you become by achieving your goals. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Champions keep playing until they get it right. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Genius is an infinite capacity for taking pains. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Typically, it is employed as an encrypted version of Telnet. Export Wizard allows you to export data from tables, collections, views, or query results to any a
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('101', 'C:\\Users\\Administrator\\Pictures\\img_802864.jpg', 'hnFY4', NULL, NULL, 'z8gNtl60fr', '13-3-4 Toyohira 3 Jo, Toyohira Ward', NULL, '2022-09-14 00:39:44', '2007-12-08 20:14:03', 798.1823, 'Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Creativity is intelligence having fun. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The past has no power over the present moment. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. There is no way to happiness. Happiness is the way. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Anyone who has ever made anything of importance was disciplined. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. The first step is as good as half over. You cannot save people, you can just love them. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. If opportunity doesnt knock, build a door. It wasnt raining when Noah built the ark. It wasnt raining when Noah built the ark. If it scares you, it might be a good thing to try. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The past has no power over the present moment. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Anyone who has ever made anything of importance was disciplined. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. You must be the change you wish to see in the world. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. The reason why a grea
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('102', '/Users/Administrator/Pictures/img_044914.png', '60bbj', NULL, NULL, '6BxhaG4ZNL', '166 Figueroa Street', NULL, '2022-01-20 03:38:00', '2019-01-21 17:03:27', 996.1460, 'Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. All journeys have secret destinations of which the traveler is unaware. You will succeed because most people are lazy. Actually it is just in an idea when feel oneself can achieve and cannot achieve. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Optimism is the one quality more associated with success and happiness than any other. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To connect to a database or schema, simply double-click it in the pane. The reason why a great man is great is that he resolves to be a great man. If you wait, all that happens is you get older. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Champions keep playing until they get it right. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Difficult circumstances serve as a textbook of life for people. The Synchronize to Database function will give you a ful
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('103', 'C:\\Users\\Administrator\\Pictures\\img_282738.png', '9dYti', NULL, NULL, 'OEeDoAVATx', '732 1st Ave', NULL, '2021-03-28 23:20:32', '2005-04-08 12:23:49', 818.0655, 'How we spend our days is, of course, how we spend our lives. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. The reason why a great man is great is that he resolves to be a great man. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Anyone who has ever made anything of importance was disciplined. Typically, it is employed as an encrypted version of Telnet. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Anyone who has ever made anything of importance was disciplined. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. You will succeed because most people are lazy. You cannot save people, you can just love them. All journeys have secret destinations of which the traveler is unaware. How we spend our days is, of course, how we spend our lives. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. If you wait, all that happens is you get older. Remember that failure is an event, not a person. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The past has no power over the present moment. The reason why a great man is great is that he resolves to be a great man. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Optimism is the one quality more associated with success and happiness than any other. The reason why a great man is great is that he resolves to be a great man. The past has no power over the present moment. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. All journeys have secret destinations of which the traveler is unaware. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('104', '/home/Administrator/Pictures/img_970049.jpg', '635PW', NULL, NULL, 'YFmH7vzPpu', '347 Ganlan Rd, Pudong', NULL, '2022-05-08 22:00:53', '2004-02-23 17:45:15', 569.4589, 'To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Success consists of going from failure to failure without loss of enthusiasm. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. To connect to a database or schema, simply double-click it in the pane. Champions keep playing until they get it right. Navicat 15 has added support for the system-wide dark mode. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. To connect to a database or schema, simply double-click it in the pane. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The past has no power over the present moment. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. If it scares you, it might be a good thing to try. What you get by achieving your goals is not as important as what you become by achieving your goals. Flexible settings enable you to set up a custom key for comparison and synchronization. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. I destroy my enemies when I make them my friends. In the middle of winter I at last discovered that there was in me an invincible summer. Anyone who has never made a mistake has never tried anything new. You must be the change you wish to see in the world. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('105', '/Users/Administrator/Pictures/img_873473.png', 'C77wS', NULL, NULL, '32PbIocbT2', '605 North Michigan Ave', NULL, '2023-08-18 03:39:39', '2009-06-07 05:03:11', 445.1261, 'Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. A query is used to extract data from the database in a readable format according to the user\'s request. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. All journeys have secret destinations of which the traveler is unaware. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. The On Startup feature allows you to control what tabs appear when you launch Navicat. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more.', 'Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. The Synchronize to Database function will give you a full picture of all database differences. Navicat 15 has added support for the system-wide dark mode. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The first step is as good as half over. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. The past has no power over the present moment. I destroy my enemies when I make them my friends. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Typically, it is employed as an encrypted version of Telnet. What you get by achieving your goals is not as important as what you become by achieving your goals. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. I will greet this day with love i
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('106', 'C:\\Users\\Administrator\\Pictures\\img_374663.png', 'KjyuF', NULL, NULL, 'BOTzgds0pg', '1-7-9 Saidaiji Akodacho', NULL, '2021-01-16 22:45:37', '2006-09-08 08:14:37', 711.0428, 'Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Actually it is just in an idea when feel oneself can achieve and cannot achieve. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. If it scares you, it might be a good thing to try. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. In the middle of winter I at last discovered that there was in me an invincible summer. If it scares you, it might be a good thing to try. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. A comfort zone is a beautiful place, but nothing ever grows there. The past has no power over the present moment. If it scares you, it might be a good thing to try. The past has no power over the present moment. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Sometimes you win, sometimes you learn. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Anyone who has never made a mistake has never tried anything new. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Anyone who has ever made anything of importance was disciplined. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. I destroy my enemies when I make them my friends. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat 15 has added support for the system-wide dark mode. In the middle of winter I at last discovered that there was in me an invincible summer. All journeys have secret destinations of which the traveler is unaware. If you wait, all that happens is you get older. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Alw
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('107', 'C:\\Users\\Administrator\\Pictures\\img_086129.png', 'wxH7m', NULL, NULL, 'LTIz4PDhP9', '729 Tremont Road', NULL, '2020-06-05 04:02:36', '2003-04-14 23:29:58', 48.9839, 'If opportunity doesnt knock, build a door. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. I destroy my enemies when I make them my friends. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. You must be the change you wish to see in the world. How we spend our days is, of course, how we spend our lives. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Anyone who has ever made anything of importance was disciplined. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The past has no power over the present moment. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. The Synchronize to Database function will give you a full picture of all database differences. All journeys have secret destinations of which the traveler is unaware. I destroy my enemies when I make them my friends. The past has no power over the present moment. The On Startup feature allows you to control what tabs appear when you launch Navicat. How we spend our days is, of course, how we spend our lives. A mans best friends are his ten fingers. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. To connect to a database or schema, simply double-click it in the pane. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat 15 has added support for the system-wide dark mode. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Optimism is the one quality more associated with success and happiness than any other. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Sometimes you win, sometimes you learn. The first step is as good as half over. Difficult circumstances serve as a textbook of life for people. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The first step is as good as half over. I destroy my enemies when I make them my friends. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specif
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('108', 'C:\\Users\\Administrator\\Pictures\\img_694400.jpg', 'Sd6Xb', NULL, NULL, 'bsRPCbJiZc', '610 FuXingMenNei Street, XiCheng District', NULL, '2024-05-28 01:03:41', '2022-10-08 03:19:57', 289.6262, 'In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Difficult circumstances serve as a textbook of life for people. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Remember that failure is an event, not a person. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. There is no way to happiness. Happiness is the way. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. A comfort zone is a beautiful place, but nothing ever grows there. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Champions keep playing until they get it right. Actually it is just in an idea when feel oneself can achieve and cannot achieve. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. You cannot save people, you can just love them. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. All journeys have secret destinations of which the traveler is unaware. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. A mans best friends are his ten fingers. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Genius is an infinite capacity for taking pains. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon A
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('109', '/Users/Administrator/Pictures/img_979059.jpg', 'WONm8', NULL, NULL, 'cjuSr212SC', '597 Sky Way', NULL, '2022-01-10 09:38:31', '2006-06-26 17:17:29', 502.3270, 'Actually it is just in an idea when feel oneself can achieve and cannot achieve. You must be the change you wish to see in the world. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat 15 has added support for the system-wide dark mode. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. You will succeed because most people are lazy. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Champions keep playing until they get it right. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. If it scares you, it might be a good thing to try. Sometimes you win, sometimes you learn. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. In the middle of winter I at last discovered that there was in me an invincible summer. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. If it scares you, it might be a good thing to try. You cannot save people, you can just love them. The past has no power over the present moment. All journeys have secret destinations of which the traveler is unaware. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. In the middle of winter I at last discovered that there was in me an invincible summer. A mans best friends are his ten fingers. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Remember that failure is an event, not a person. What you get by achieving your goals is not as important as what you become by achieving your goals. I will greet this day with love in my heart. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('11', '/Users/Administrator/Pictures/img_860024.png', 'd08tq', NULL, NULL, 'mu3YAG2MxX', '12 3-803 Kusunokiajima, Kita Ward', NULL, '2024-08-19 15:22:15', '2013-02-15 03:40:27', 521.5692, 'All journeys have secret destinations of which the traveler is unaware. I destroy my enemies when I make them my friends. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Creativity is intelligence having fun. Actually it is just in an idea when feel oneself can achieve and cannot achieve. If you wait, all that happens is you get older. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. What you get by achieving your goals is not as important as what you become by achieving your goals. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. If you wait, all that happens is you get older. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Difficult circumstances serve as a textbook of life for people. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. There is no way to happiness. Happiness is the way. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Difficult circumstances serve as a textbook of life for people. If the plan doesnt work, change the plan, but never the goal. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. A man is not old until regrets take the place of dreams. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The On Startup feature allows you to control what tabs appear when you launch Navicat. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Success consists of going from failure to failure without loss of enthusiasm. Remember that failure is an event, not a person. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. It wasnt raining when Noah built the ark. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication.', 'Optimism is the one quality more associated with success and happiness than any other. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Anyone who has ever made anything of importance was disciplined. Navicat Monitor can be installed on any local computer or virtual mac
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('110', '/home/Administrator/Pictures/img_060770.jpg', 'podsP', NULL, NULL, '7Kr0YqIjYf', '872 Park End St', NULL, '2022-08-14 06:04:26', '2023-10-18 06:58:43', 345.7069, 'Difficult circumstances serve as a textbook of life for people. A comfort zone is a beautiful place, but nothing ever grows there. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Flexible settings enable you to set up a custom key for comparison and synchronization. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. The On Startup feature allows you to control what tabs appear when you launch Navicat. There is no way to happiness. Happiness is the way. The Synchronize to Database function will give you a full picture of all database differences. Sometimes you win, sometimes you learn. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. I may not have gone where I intended to go, but I think I have ended up where I needed to be. It wasnt raining when Noah built the ark. Difficult circumstances serve as a textbook of life for people. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. You cannot save people, you can just love them. A query is used to extract data from the database in a readable format according to the user\'s request. If opportunity doesnt knock, build a door. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Success consists of going from failure to failure without loss of enthusiasm. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Difficult circumstances serve as a textbook of life for people. If you wait, all that happens is you get older. What you get by achieving your goals is not as important as what you become by achieving your goals. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. The past has no power over the present moment. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. If you wait, all that happens is you get older. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. A query is used to extract data from the database in a readable format according to the user\'s request. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the d
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('111', '/home/Administrator/Pictures/img_841236.png', 'dapgl', NULL, NULL, 'SyFaYfy0Fy', '727 The Pavilion, Lammas Field, Driftway', NULL, '2022-05-27 01:07:24', '2007-08-21 04:13:40', 614.8513, 'You cannot save people, you can just love them. The first step is as good as half over. Flexible settings enable you to set up a custom key for comparison and synchronization. I will greet this day with love in my heart. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. A query is used to extract data from the database in a readable format according to the user\'s request. The first step is as good as half over. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. I will greet this day with love in my heart. A mans best friends are his ten fingers. You will succeed because most people are lazy. You cannot save people, you can just love them. Genius is an infinite capacity for taking pains. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. You will succeed because most people are lazy. I destroy my enemies when I make them my friends. In the middle of winter I at last discovered that there was in me an invincible summer. If you wait, all that happens is you get older. I will greet this day with love in my heart. Sometimes you win, sometimes you learn. A man is not old until regrets take the place of dreams. The Synchronize to Database function will give you a full picture of all database differences. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. I will greet this day with love in my heart. If opportunity doesnt knock, build a door. Typically, it is employed as an encrypted version of Telnet. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. A mans best friends are his ten fingers. Actually it is just in an idea when feel oneself can achieve and cannot achieve. In the middle of winter I at last discovered that there was in me an invincible summer. The On Startup feature allows you to control what tabs appear when you launch Navicat. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If the plan doesnt work, change the plan, but never the goal. Instead of wondering when your next vacati
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('112', '/home/Administrator/Pictures/img_222234.png', 'EwgVs', NULL, NULL, 'poPLkIk6s1', '47 New Wakefield St', NULL, '2020-09-26 17:48:59', '2019-01-10 18:56:27', 378.9557, 'Flexible settings enable you to set up a custom key for comparison and synchronization. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. A man is not old until regrets take the place of dreams. It wasnt raining when Noah built the ark. A query is used to extract data from the database in a readable format according to the user\'s request. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Anyone who has never made a mistake has never tried anything new. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Creativity is intelligence having fun. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. There is no way to happiness. Happiness is the way. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Difficult circumstances serve as a textbook of life for people. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. In the middle of winter I at last discovered that there was in me an invincible summer. A query is used to extract data from the database in a readable format according to the user\'s request. If opportunity doesnt knock, build a door. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. How we spend our days is, of course, how we spend our lives. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The Synchronize to Database function will give you a full picture of all database differences. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. I destroy my enemies when I make them my friends. The past has no power over the present moment. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. If the plan doesnt work, change the plan, but never the goal. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Optimism is the one quality more associated with success and happiness than any other. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat Data Modeler enables you to build high-quality c
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('113', '/home/Administrator/Pictures/img_095562.jpg', 'D4ivw', NULL, NULL, 'm0ELpS2OUM', '104 Pedway', NULL, '2024-04-04 17:21:10', '2012-10-30 15:57:14', 476.6682, 'If opportunity doesnt knock, build a door. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Genius is an infinite capacity for taking pains. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Success consists of going from failure to failure without loss of enthusiasm. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. A mans best friends are his ten fingers. I will greet this day with love in my heart. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. A mans best friends are his ten fingers. A mans best friends are his ten fingers. What you get by achieving your goals is not as important as what you become by achieving your goals. A query is used to extract data from the database in a readable format according to the user\'s request. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. All journeys have secret destinations of which the traveler is unaware. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. There is no way to happiness. Happiness is the way. Success consists of going from failure to failure without loss of enthusiasm. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. If opportunity doesnt knock, build a door. Genius is an infinite capacity for taking pains. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. There is no way to happiness. Happiness is the way. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Success consists of going from failure to failure without loss of enthusiasm. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Genius
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('114', 'C:\\Users\\Administrator\\Pictures\\img_339929.png', '2h3dQ', NULL, NULL, 'CBvBFwgPve', '822 Ridgewood Road', NULL, '2023-12-03 22:31:47', '2008-06-21 07:12:19', 182.1189, 'Success consists of going from failure to failure without loss of enthusiasm. Flexible settings enable you to set up a custom key for comparison and synchronization. You will succeed because most people are lazy. If the plan doesnt work, change the plan, but never the goal. It wasnt raining when Noah built the ark. Typically, it is employed as an encrypted version of Telnet. Navicat 15 has added support for the system-wide dark mode. If opportunity doesnt knock, build a door. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Actually it is just in an idea when feel oneself can achieve and cannot achieve. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. What you get by achieving your goals is not as important as what you become by achieving your goals. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Sometimes you win, sometimes you learn. You must be the change you wish to see in the world. If it scares you, it might be a good thing to try. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. If it scares you, it might be a good thing to try. I may not have gone where I intended to go, but I think I have ended up where I needed to be. There is no way to happiness. Happiness is the way. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. How we spend our days is, of course, how we spend our lives. Sometimes you win, sometimes you learn. A query is used to extract data from the database in a readable format according to the user\'s request. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. To connect to a database or schema, simply double-click it in the pane. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Anyone who has ever made anything of importance was disciplined. Creativity is intelligence having fun. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat provides powerful tools for working with queries: Query Editor for editing the query text
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('115', '/Users/Administrator/Pictures/img_367278.png', 'ebLWc', NULL, NULL, '2DQiad9jSP', '772 Sackville St', NULL, '2021-04-14 23:47:18', '2003-12-25 08:56:11', 581.5615, 'You must be the change you wish to see in the world. The first step is as good as half over. Typically, it is employed as an encrypted version of Telnet. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. To connect to a database or schema, simply double-click it in the pane. In the middle of winter I at last discovered that there was in me an invincible summer. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Actually it is just in an idea when feel oneself can achieve and cannot achieve. If you wait, all that happens is you get older. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. If the plan doesnt work, change the plan, but never the goal. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Difficult circumstances serve as a textbook of life for people. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The Synchronize to Database function will give you a full picture of all database differences. You cannot save people, you can just love them. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat 15 has added support for the system-wide dark mode. You must be the change you wish to see in the world. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The Synchronize to Database function will give you a full picture of all database differences. It wasnt raining when Noah built the ark. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('116', 'C:\\Users\\Administrator\\Pictures\\img_775018.png', 'WrBHk', NULL, NULL, 't4EAjVnomO', '483 Lark Street', NULL, '2021-05-13 23:19:12', '2010-02-25 15:34:16', 523.8079, 'It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. All journeys have secret destinations of which the traveler is unaware. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Success consists of going from failure to failure without loss of enthusiasm.', 'Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. If you wait, all that happens is you get older. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. A mans best friends are his ten fingers. A mans best friends are his ten fingers. There is no way to happiness. Happiness is the way. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. A query is used to extract data from the database in a readable format according to the user\'s request. The On Startup feature allows you to control what tabs appear when you launch Navicat. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. I destroy my enemies when I make them my friends. A man is not old until regrets take the place of dreams. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Remember that failure is an event, not a person. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. If it scares you, it might be a good thing to try. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Genius is an infinite capacity for taking pains. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. In the middle of winter I at last discovered that there was in me an in
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('117', '/home/Administrator/Pictures/img_374685.png', '2K6sD', NULL, NULL, '56WLOq4EYa', '891 Shanhu Rd', NULL, '2021-01-12 17:30:54', '2004-06-25 08:09:02', 694.7575, 'Champions keep playing until they get it right. How we spend our days is, of course, how we spend our lives. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. A comfort zone is a beautiful place, but nothing ever grows there. Genius is an infinite capacity for taking pains. All journeys have secret destinations of which the traveler is unaware. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections.', 'The first step is as good as half over. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. All journeys have secret destinations of which the traveler is unaware. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. You will succeed because most people are lazy. Optimism is the one quality more associated with success and happiness than any other. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. If opportunity doesnt knock, build a door. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Anyone who has never made a mistake has never tried anything new. The reason why a great man is great is that he resolves to be a great man. A man is not old until regrets take the place of dreams. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. If the plan doesnt work, change the plan, but never the goal. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. To connect to a database or schema, simply double-click it in the pane. The past has no power over the present moment. If you wait, all that happens is you get older. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Bu
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('118', '/Users/Administrator/Pictures/img_501015.png', 'Wbl9O', NULL, NULL, '1VzHbaI25A', '119 North Michigan Ave', NULL, '2024-07-06 09:14:15', '2013-10-13 10:42:36', 233.9153, 'To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Success consists of going from failure to failure without loss of enthusiasm. Genius is an infinite capacity for taking pains. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Sometimes you win, sometimes you learn. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. It wasnt raining when Noah built the ark. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. How we spend our days is, of course, how we spend our lives. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Actually it is just in an idea when feel oneself can achieve and cannot achieve. The On Startup feature allows you to control what tabs appear when you launch Navicat. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Sometimes you win, sometimes you learn. I will greet this day with love in my heart. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. There is no way to happiness. Happiness is the way. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information.', 'To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Sometimes you win, sometimes you learn. I may not have gone where I intended to go, but I think I have ended up where I needed to be. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. To start working with your server
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('119', '/home/Administrator/Pictures/img_493964.jpg', '0gvi4', NULL, NULL, '5EDCpbqITY', '41 FuXingMenNei Street, XiCheng District', NULL, '2022-01-07 10:30:33', '2014-02-05 18:43:24', 591.9525, 'Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. All journeys have secret destinations of which the traveler is unaware. Navicat 15 has added support for the system-wide dark mode. Remember that failure is an event, not a person. In the middle of winter I at last discovered that there was in me an invincible summer. If it scares you, it might be a good thing to try. A mans best friends are his ten fingers. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. I destroy my enemies when I make them my friends. Success consists of going from failure to failure without loss of enthusiasm. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information.', 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. A query is used to extract data from the database in a readable format according to the user\'s request. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Champions keep playing until they get it right. If it scares you, it might be a good thing to try. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. If it scares you, it might be a good thing to try. If you wait, all that happens is you get older. The Synchronize to Database function will give you a full picture of all database differences. A mans best friends are his ten fingers. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. All journeys have secret destinations of which the traveler is unaware. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Anyone who has never made a mistake has never tried anything new. In other words, Navicat provides the ab
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('12', 'C:\\Users\\Administrator\\Pictures\\img_762394.png', '6P11Y', NULL, NULL, '2yzGDmpuxr', '722 Shennan Ave, Futian District', NULL, '2023-12-03 21:56:51', '2023-11-27 12:22:20', 494.6926, 'Navicat 15 has added support for the system-wide dark mode. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If it scares you, it might be a good thing to try. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Remember that failure is an event, not a person. I will greet this day with love in my heart. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another.', 'The past has no power over the present moment. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Genius is an infinite capacity for taking pains. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Genius is an infinite capacity for taking pains. If opportunity doesnt knock, build a door. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. A mans best friends are his ten fingers. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The On Startup feature allows you to control what tabs appear when you launch Navicat. Difficult circumstances serve as a textbook of life for people. Success consists of going from failure to failure without loss of enthusiasm. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Anyone who has ever made anything of importance was disciplined. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models.', NULL, 'A man is not old until regrets take the place of dreams. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('120', '/home/Administrator/Pictures/img_809452.jpg', 'H6ZqR', NULL, NULL, '2D3ZZpERYe', '5-19-18 Shinei 4 Jo, Kiyota Ward', NULL, '2022-11-05 06:27:38', '2000-06-03 15:46:07', 580.3832, 'The past has no power over the present moment. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network.', 'It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. A man is not old until regrets take the place of dreams. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. There is no way to happiness. Happiness is the way. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Anyone who has ever made anything of importance was disciplined. If you wait, all that happens is you get older. The first step is as good as half over. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. The On Startup feature allows you to control what tabs appear when you launch Navicat. Genius is an infinite capacity for taking pains. The On Startup feature allows you to control what tabs appear when you launch Navicat. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. If you wait, all that happens is you get older. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. A query is used to extract data from the database in a readable format according to the user\'s request. You must be the change you wish to see in the world. I destroy my enemies when I make them my friends. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Difficult circumstances serve as a textbook of life for people. Creativity is intelligence having fun. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Flexible settings enable you to set up a custom key for comparison and synchronization. The first step is as good as half over. Optimism is the one quality more associated with success and happiness than any other. How we spend our days is, of course, how we spend our lives. How we spend our days is, of course, how we spend our lives. Champions keep playing until they get it right. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. It wasnt raining when Noah built the ark. A mans best friends are his ten fin
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('121', '/Users/Administrator/Pictures/img_886453.png', 'LUmOk', NULL, NULL, 'IDpV0v83am', '259 Canal Street', NULL, '2022-04-24 07:42:24', '2011-08-19 03:56:04', 411.0572, 'In the middle of winter I at last discovered that there was in me an invincible summer. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The past has no power over the present moment. The past has no power over the present moment. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat 15 has added support for the system-wide dark mode. Genius is an infinite capacity for taking pains. I destroy my enemies when I make them my friends. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Champions keep playing until they get it right. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. The first step is as good as half over. You cannot save people, you can just love them. All journeys have secret destinations of which the traveler is unaware. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. What you get by achieving your goals is not as important as what you become by achieving your goals. Success consists of going from failure to failure without loss of enthusiasm. Flexible settings enable you to set up a custom key for comparison and synchronization. How we spend our days is, of course, how we spend our lives. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. You will succeed because most people are lazy. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. A man is not old until regrets take the place of dreams. In the middle of winter I at last discovered that there was in me an invincible summer. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solut
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('122', 'C:\\Users\\Administrator\\Pictures\\img_828102.png', 'aPIov', NULL, NULL, 'v330HQUoiL', '13-3-1 Toyohira 3 Jo, Toyohira Ward', NULL, '2022-01-05 23:50:55', '2007-11-17 17:15:53', 411.1045, 'Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. If opportunity doesnt knock, build a door. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Anyone who has ever made anything of importance was disciplined. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. There is no way to happiness. Happiness is the way. In the middle of winter I at last discovered that there was in me an invincible summer. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. The first step is as good as half over. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. A comfort zone is a beautiful place, but nothing ever grows there. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Sometimes you win, sometimes you learn. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. If opportunity doesnt knock, build a door. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Anyone who has ever made anything of importance was disciplined. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. If you wait, all that happens is you get older. A mans best friends are his ten fingers. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Difficult circumstances serve as a textbook of life for people. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. A mans best friends are his ten fingers. A man is not old until regrets take the place of dreams. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. I destroy my enemies when I make them my friends. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. There is no way to happiness. Happiness is the way. The Information Pane shows the detailed object information, project activities, the DDL
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('123', 'C:\\Users\\Administrator\\Pictures\\img_043566.png', '6SdIU', NULL, NULL, 'nxQUyVmpCG', '3-15-19 Ginza, Chuo-ku', NULL, '2022-02-16 23:27:03', '2001-09-26 02:14:27', 90.4160, 'I may not have gone where I intended to go, but I think I have ended up where I needed to be. In the middle of winter I at last discovered that there was in me an invincible summer. Sometimes you win, sometimes you learn. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. The reason why a great man is great is that he resolves to be a great man. Actually it is just in an idea when feel oneself can achieve and cannot achieve. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Difficult circumstances serve as a textbook of life for people. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. The Synchronize to Database function will give you a full picture of all database differences. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Anyone who has never made a mistake has never tried anything new. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. If the plan doesnt work, change the plan, but never the goal. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Creativity is intelligence having fun. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. The Information Pane shows th
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('124', '/home/Administrator/Pictures/img_023473.png', 'EEFBd', NULL, NULL, 'FZH02T4gLr', '1-7-7 Saidaiji Akodacho', NULL, '2021-06-02 12:49:23', '2021-05-25 15:13:16', 792.0699, 'SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. You cannot save people, you can just love them. What you get by achieving your goals is not as important as what you become by achieving your goals. It wasnt raining when Noah built the ark. You cannot save people, you can just love them. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. You will succeed because most people are lazy. Anyone who has ever made anything of importance was disciplined. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. A query is used to extract data from the database in a readable format according to the user\'s request. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. All journeys have secret destinations of which the traveler is unaware. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. If opportunity doesnt knock, build a door. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms.', 'Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. You cannot save people, you can just love them. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. I destroy my enemies when I make them my friends. The past has no power over the present moment. Navicat 15 has added support for the system-wide dark mode. Navicat allo
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('125', 'C:\\Users\\Administrator\\Pictures\\img_261754.png', 'pXTXg', NULL, NULL, 'u6Lwkwoxba', '824 Abingdon Rd, Cumnor', NULL, '2020-10-29 14:26:09', '2000-03-13 19:53:15', 827.8900, 'Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. In the middle of winter I at last discovered that there was in me an invincible summer. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The first step is as good as half over. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. The Synchronize to Database function will give you a full picture of all database differences. Creativity is intelligence having fun. The first step is as good as half over. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. If opportunity doesnt knock, build a door. The On Startup feature allows you to control what tabs appear when you launch Navicat. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. How we spend our days is, of course, how we spend our lives. Remember that failure is an event, not a person. You must be the change you wish to see in the world. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. To connect to a database or schema, simply double-click it in the pane. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. How we spend our days is, of course, how we spend our lives. If the plan doesnt work, change the plan, but never the goal. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Anyone who has ever made anything of importance was disciplined. Creativity is intelligence having fun. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. To open a query using an external editor, control-click it and select Open
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('126', 'C:\\Users\\Administrator\\Pictures\\img_554860.png', 's8jnC', NULL, NULL, 'WBuV9DNJjP', '15 Grape Street', NULL, '2024-11-22 10:29:54', '2017-02-20 06:23:59', 52.0887, 'A comfort zone is a beautiful place, but nothing ever grows there. The Synchronize to Database function will give you a full picture of all database differences. The past has no power over the present moment. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. The past has no power over the present moment. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Flexible settings enable you to set up a custom key for comparison and synchronization. A mans best friends are his ten fingers. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Typically, it is employed as an encrypted version of Telnet. You will succeed because most people are lazy. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. A mans best friends are his ten fingers. Creativity is intelligence having fun. Navicat 15 has added support for the system-wide dark mode. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. If you wait, all that happens is you get older. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. You will succeed because most people are lazy. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. If yo
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('127', 'C:\\Users\\Administrator\\Pictures\\img_864696.jpg', 'Nj9KO', NULL, NULL, 'gXJVQnsezY', '3-9-19 Gakuenminami', NULL, '2020-08-02 14:28:03', '2021-07-04 19:53:15', 237.6903, 'If it scares you, it might be a good thing to try. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. What you get by achieving your goals is not as important as what you become by achieving your goals. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. If you wait, all that happens is you get older. All journeys have secret destinations of which the traveler is unaware. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The Synchronize to Database function will give you a full picture of all database differences. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. If opportunity doesnt knock, build a door. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. The On Startup feature allows you to control what tabs appear when you launch Navicat. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Typically, it is employed as an encrypted version of Telnet. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Remember that failure is an event, not a person. I destroy my enemies when I make them my friends. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The repository database can be an e
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('128', 'C:\\Users\\Administrator\\Pictures\\img_357727.jpg', 'eWxzX', NULL, NULL, '6BQBOEKtSg', '1-7-13 Saidaiji Akodacho', NULL, '2023-01-01 10:55:14', '2015-03-24 23:51:49', 77.4682, 'You must be the change you wish to see in the world. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. A mans best friends are his ten fingers. You will succeed because most people are lazy. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. In the middle of winter I at last discovered that there was in me an invincible summer. The Synchronize to Database function will give you a full picture of all database differences. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Creativity is intelligence having fun. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Creativity is intelligence having fun. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Typically, it is employed as an encrypted version of Telnet. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. A man is not old until regrets take the place of dreams. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. The Synchronize to Database function will give you a full picture of all database differences. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Champions keep playing until they get it right. Navicat 15 has added support for the system-wide dark mode. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To connect to a database or schema, simply double-click it in the pane. Difficult circumstances serve as a textbook of life for people. If you wait, all that happens is you get older. You will succeed because most people are lazy. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. I will greet this day with love in my heart. To successfully establish a new connection to local/remote server - no matter via SSL,
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('129', '/Users/Administrator/Pictures/img_595162.jpg', 'MJ85o', NULL, NULL, 'GQd9L8ku0H', '992 Binchuan Rd, Minhang District', NULL, '2024-06-22 03:29:54', '2008-12-05 04:41:16', 596.7127, 'Remember that failure is an event, not a person. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. A query is used to extract data from the database in a readable format according to the user\'s request. I may not have gone where I intended to go, but I think I have ended up where I needed to be. If you wait, all that happens is you get older. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. A comfort zone is a beautiful place, but nothing ever grows there. Flexible settings enable you to set up a custom key for comparison and synchronization. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Sometimes you win, sometimes you learn. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Sometimes you win, sometimes you learn. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. If the plan doesnt work, change the plan, but never the goal. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Success consists of going from failure to failure without loss of enthusiasm. If opportunity doesnt knock, build a door. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. A man is not old until regrets take the place of dreams. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Typically, it is employed as an encrypted version of Telnet. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. If opportunity doesnt knock, build a door. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The reason why a great man is great is that he resolv
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('13', 'C:\\Users\\Administrator\\Pictures\\img_407810.jpg', 'sQAoS', NULL, NULL, 'cDFjSpof57', '21 Edward Ave, Braunstone Town', NULL, '2022-12-27 20:48:46', '2017-07-01 01:22:31', 757.9125, 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Anyone who has never made a mistake has never tried anything new. Typically, it is employed as an encrypted version of Telnet. Navicat 15 has added support for the system-wide dark mode. If the plan doesnt work, change the plan, but never the goal. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Difficult circumstances serve as a textbook of life for people. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If the plan doesnt work, change the plan, but never the goal. You must be the change you wish to see in the world. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries.', 'You will succeed because most people are lazy. How we spend our days is, of course, how we spend our lives. There is no way to happiness. Happiness is the way. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Creativity is intelligence having fun. Remember that failure is an event, not a person. A mans best friends are his ten fingers. The reason why a great man is great is that he resolves to be a great man. A man is not old until regrets take the place of dreams. If opportunity doesnt knock, build a door. If you wait, all that happens is you get older. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. The first step is as good as half over. You cannot save people, you can just love them. A query is used to extract data fr
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('130', 'C:\\Users\\Administrator\\Pictures\\img_481709.jpg', 'lycrt', NULL, NULL, 'GA3s4GjxTM', '852 Spring Gardens', NULL, '2021-03-10 14:20:41', '2000-10-02 00:29:57', 625.0723, 'I destroy my enemies when I make them my friends. If opportunity doesnt knock, build a door. Anyone who has ever made anything of importance was disciplined. Difficult circumstances serve as a textbook of life for people. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Actually it is just in an idea when feel oneself can achieve and cannot achieve. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. You must be the change you wish to see in the world. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. You cannot save people, you can just love them. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. If it scares you, it might be a good thing to try. A man is not old until regrets take the place of dreams. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. All journeys have secret destinations of which the traveler is unaware. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To connect to a database or schema, simply double-click it in the pane. Anyone who has ever made anything of importance was disciplined. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication.', 'If it scares you, it might be a good thing to try. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat allows you to transfer data from o
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('131', '/home/Administrator/Pictures/img_220954.png', 'b1C7l', NULL, NULL, 'Fbg1bzz0ZI', '312 FuXingMenNei Street, XiCheng District', NULL, '2020-01-27 08:28:32', '2008-03-11 15:58:30', 549.9988, 'You cannot save people, you can just love them. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Flexible settings enable you to set up a custom key for comparison and synchronization. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. The On Startup feature allows you to control what tabs appear when you launch Navicat. The first step is as good as half over. Flexible settings enable you to set up a custom key for comparison and synchronization. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The past has no power over the present moment. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. A man is not old until regrets take the place of dreams. Champions keep playing until they get it right. There is no way to happiness. Happiness is the way. It wasnt raining when Noah built the ark. I may not have gone where I intended to go, but I think I have ended up where I needed to be. If it scares you, it might be a good thing to try. If it scares you, it might be a good thing to try. Remember that failure is an event, not a person. What you get by achieving your goals is not as important as what you become by achieving your goals. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. A query is used to extract data from the database in a readable format according to the user\'s request. You cannot save people, you can just love them. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat Monitor
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('132', '/Users/Administrator/Pictures/img_110323.jpg', 'QdgcD', NULL, NULL, 'gAQQyR2EJF', '506 1st Ave', NULL, '2021-07-17 13:27:27', '2011-11-09 12:20:57', 321.5196, 'Anyone who has ever made anything of importance was disciplined. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. You will succeed because most people are lazy. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. If the plan doesnt work, change the plan, but never the goal. You cannot save people, you can just love them. If you wait, all that happens is you get older. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Creativity is intelligence having fun. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. The reason why a great man is great is that he resolves to be a great man. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Champions keep playing until they get it right. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. There is no way to happiness. Happiness is the way. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Creativity is intelligence having fun. Typically, it is employed as an encrypted version of Telnet. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Anyone who has never made a mistake has never tried anything new. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Genius is an infinite capacity for taking pains. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms.
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('133', '/Users/Administrator/Pictures/img_533075.png', 'f78h7', NULL, NULL, 'baVMjikvAp', '780 Ridgewood Road', NULL, '2024-11-18 05:42:44', '2015-08-09 18:28:01', 742.7250, 'In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. A query is used to extract data from the database in a readable format according to the user\'s request. The past has no power over the present moment. Champions keep playing until they get it right. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Genius is an infinite capacity for taking pains. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. You cannot save people, you can just love them. You will succeed because most people are lazy. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. You cannot save people, you can just love them. What you get by achieving your goals is not as important as what you become by achieving your goals. Sometimes you win, sometimes you learn. Anyone who has never made a mistake has never tried anything new. You will succeed because most people are lazy. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Sometimes you win, sometimes you learn. Success consists of going from failure to failure without loss of enthusiasm. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. All journeys have secret destinations of which the traveler is unaware. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Success consists of going from failure to failure without loss of enthusiasm. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navica
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('134', '/home/Administrator/Pictures/img_738876.jpg', 'Q6PWh', NULL, NULL, 'OOkat9iRkQ', '794 West Market Street', NULL, '2020-08-24 12:11:26', '2009-10-13 22:04:31', 969.0753, 'It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. If opportunity doesnt knock, build a door. Flexible settings enable you to set up a custom key for comparison and synchronization. If you wait, all that happens is you get older. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. If opportunity doesnt knock, build a door. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. A comfort zone is a beautiful place, but nothing ever grows there. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. How we spend our days is, of course, how we spend our lives. You must be the change you wish to see in the world. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. I destroy my enemies when I make them my friends. A mans best friends are his ten fingers. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Genius is an infinite capacity for taking pains. I destroy my enemies when I make them my friends. Champions keep playing until they get it right. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Difficult circumstances serve as a textbook of life for people. The reason why a great man is great is that he resolves to be a great man. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Sometimes you win, sometimes you learn. Genius is an infinite capacity for taking pains. A comfort zone is a beautiful place, but nothing ever grows there. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. If the plan doesnt work, change the plan, but never the goal. A comfort zone is a beautiful place, but nothing ever grows there. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Typically, it is employed as an encrypted version of Telnet. If it scares you, it might be a good thing to try. There is no way to happiness. Happiness is the way. A man is not old until regrets take the place of dreams. A query is used to extract data from the database in a readable format according to the user\'s request. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. In the middle of winter I at last dis
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('135', '/home/Administrator/Pictures/img_088413.jpg', 'O5ZKg', NULL, NULL, 'FMLhVe15rz', '5-2-6 Kikusui 3 Jo, Shiroishi Ward', NULL, '2024-01-16 10:49:52', '2021-11-07 21:27:11', 766.2962, 'How we spend our days is, of course, how we spend our lives. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information.', 'Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server.', NULL, 'To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. To connect to a database or schema, simply double-click it in the pane. What you get by achieving your goals is not as important as what you become by achieving your goals. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. You cannot save people, you can just love them. Creativity is intelligence having fun. If you wait, all that happens is you get older. You will succeed because most people are lazy. The past has no power over the present moment. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. You must be the change you wish to see in the world. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. A comfort zone is a beautiful place, but nothing ever grows there. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Optimism is the one quality more associated with success and happiness than any other. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. I will greet this day with love in my heart. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Sometimes you win, some
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('136', '/home/Administrator/Pictures/img_640471.jpg', 'a3b1g', NULL, NULL, 'vJlfcKDYF9', '740 Tremont Road', NULL, '2022-07-31 17:52:21', '2024-05-25 03:08:32', 890.4754, 'A man is not old until regrets take the place of dreams. Remember that failure is an event, not a person. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Anyone who has never made a mistake has never tried anything new. Anyone who has ever made anything of importance was disciplined. If opportunity doesnt knock, build a door. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The Synchronize to Database function will give you a full picture of all database differences. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Remember that failure is an event, not a person. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. In the middle of winter I at last discovered that there was in me an invincible summer. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. A mans best friends are his ten fingers. If opportunity doesnt knock, build a door. Remember that failure is an event, not a person. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Genius is an infinite capacity for taking pains. A mans best friends are his ten fingers. You cannot save people, y
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('137', 'C:\\Users\\Administrator\\Pictures\\img_205363.jpg', 'fX1Cz', NULL, NULL, 'PGTDCQEJB0', '297 Daxin S Rd, Daxin Shangquan, Tianhe Qu', NULL, '2023-05-09 22:26:23', '2012-07-22 15:38:44', 438.3334, 'With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To connect to a database or schema, simply double-click it in the pane. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Genius is an infinite capacity for taking pains. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Champions keep playing until they get it right. Flexible settings enable you to set up a custom key for comparison and synchronization. If it scares you, it might be a good thing to try. Success consists of going from failure to failure without loss of enthusiasm. If you wait, all that happens is you get older. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. If it scares you, it might be a good thing to try. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. You cannot save people, you can just love them. All journeys have secret destinations of which the traveler is unaware. How we spend our days is, of course, how we spend our lives. The Synchronize to Database function will give you a full picture of all database differences. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If you wait, all that happens is you get older. Remember that failure is an event, not a person. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. All journeys have secret destinations of which the traveler is unaware. A comfort zone is a beautiful place, but nothing ever grows there. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. In the middle of winter I at last discovered that there was in me an invincible summer. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. If opportunity doesnt knock, build a door. To connect to a database or schema, simply double-click it in the pane. If it scares you, it might be a good thing t
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('138', '/home/Administrator/Pictures/img_448428.png', 'G0lal', NULL, NULL, 'npLOf2Kmpu', '1-7-15 Omido, Higashiosaka', NULL, '2023-04-26 07:02:52', '2020-09-08 12:16:18', 894.3396, 'A query is used to extract data from the database in a readable format according to the user\'s request. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Remember that failure is an event, not a person. Creativity is intelligence having fun. Sometimes you win, sometimes you learn. You cannot save people, you can just love them. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. You must be the change you wish to see in the world. It wasnt raining when Noah built the ark. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. If you wait, all that happens is you get older. A query is used to extract data from the database in a readable format according to the user\'s request. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. To connect to a database or schema, simply double-click it in the pane. The first step is as good as half over. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. The On Startup feature allows you to control what tabs appear when you launch Navicat. Actually it is just in an idea when feel oneself can achieve and cannot achieve. It wasnt raining when Noah built the ark. Sometimes you win, sometimes you learn. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. A comfort zone is a beautiful place, but nothing ever grows there. Optimism is the one quality more associated with success and happiness than any other. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. In the middle of winter I at last discovered that there was in me an invincible summer. Typically, it is employed as an encrypted version of
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('139', '/Users/Administrator/Pictures/img_913578.jpg', '6mQNT', NULL, NULL, 'Ubp1ZmmpOS', '813 Park End St', NULL, '2020-09-12 17:41:41', '2014-03-15 10:55:33', 859.3682, 'The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Anyone who has never made a mistake has never tried anything new. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. A comfort zone is a beautiful place, but nothing ever grows there. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. If you wait, all that happens is you get older. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The past has no power over the present moment. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. A man is not old until regrets take the place of dreams. In the middle of winter I at last discovered that there was in me an invincible summer. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. In the middle of winter I at last discovered that there was in me an invincible summer. Remember that failure is an event, not a person. The On Startup feature allows you to control what tabs appear when you launch Navicat. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Difficult circumstances serve as a textbook of life for people. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Remember that failure is an event, not a person. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The On Startup feature allows you to control what tabs appear when you launch Navicat. The reason why a great man is great is that he resolves to be a great man. Champions keep playing until they get it right. A comfort zone is a beautiful place, but nothing ever grows there. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('14', '/home/Administrator/Pictures/img_274162.png', 'Dqzrc', NULL, NULL, 'dvdj8TRN9H', '1-6-5, Marunouchi, Chiyoda-ku', NULL, '2023-07-19 00:53:12', '2019-03-06 04:39:52', 205.9371, 'You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. A mans best friends are his ten fingers. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. In the middle of winter I at last discovered that there was in me an invincible summer. A query is used to extract data from the database in a readable format according to the user\'s request. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Success consists of going from failure to failure without loss of enthusiasm. A comfort zone is a beautiful place, but nothing ever grows there. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. If the plan doesnt work, change the plan, but never the goal. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. A query is used to extract data from the database in a readable format according to the user\'s request. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Difficult circumstances serve as a textbook of life for people. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. If opportunity doesnt knock, build a door. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Optimism is the one quality more associated with success and happiness than any other. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. If the plan doesnt work, change the plan, but never the goal. Anyone who has ever made anything of importance was disciplined. Champions keep playing until they get it right. Genius is an infinite capacity for taking pains. If it scares you, it might be a good thing to try. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. If the Show objects under schema in navigation pane option is checked at the Preferences window,
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('140', '/home/Administrator/Pictures/img_180541.jpg', 'S1Yno', NULL, NULL, 'R0vyPcvDCJ', 'No.388, Dongsan Road, Erxianqiao, Chenghua District', NULL, '2023-03-13 23:59:06', '2013-05-14 09:48:17', 410.6259, 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The reason why a great man is great is that he resolves to be a great man. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The first step is as good as half over. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. How we spend our days is, of course, how we spend our lives. Champions keep playing until they get it right. If opportunity doesnt knock, build a door. I may not have gone where I intended to go, but I think I have ended up where I needed to be. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The On Startup feature allows you to control what tabs appear when you launch Navicat. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. How we spend our days is, of course, how we spend our lives. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Anyone who has ever made anything of importance was disciplined. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. I will greet this day with love in my heart. Champions keep playing until they get it right. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Actually it is just in an idea when feel oneself can achieve and cannot achieve. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Creativity is intelligence having fun. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kin
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('141', '/Users/Administrator/Pictures/img_716346.png', 'Lm63i', NULL, NULL, 'pUF3ZxaflT', '83 39 William IV St, Charing Cross', NULL, '2022-02-09 05:01:11', '2019-02-10 10:42:36', 912.1773, 'Champions keep playing until they get it right. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. All journeys have secret destinations of which the traveler is unaware. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Optimism is the one quality more associated with success and happiness than any other. Sometimes you win, sometimes you learn. How we spend our days is, of course, how we spend our lives. How we spend our days is, of course, how we spend our lives. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. To connect to a database or schema, simply double-click it in the pane. Actually it is just in an idea when feel oneself can achieve and cannot achieve. How we spend our days is, of course, how we spend our lives. A query is used to extract data from the database in a readable format according to the user\'s request. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. In the middle of winter I at last discovered that there was in me an invincible summer. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Creativity is intelligence having fun. Navicat 15 has added support for the system-wide dark mode. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. A mans best friends are his ten fingers. You cannot save people, you can just love them. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Creativity is intelligence having fun. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. A mans best friends are his ten fingers. Always
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('142', '/home/Administrator/Pictures/img_549496.png', 'J5S3p', NULL, NULL, 'M8JZY1DlYI', '118 East Cooke Road', NULL, '2020-01-16 11:36:19', '2018-07-01 17:12:51', 557.7227, 'I destroy my enemies when I make them my friends. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. If opportunity doesnt knock, build a door. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. The first step is as good as half over. To connect to a database or schema, simply double-click it in the pane. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. In the middle of winter I at last discovered that there was in me an invincible summer. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Difficult circumstances serve as a textbook of life for people. I will greet this day with love in my heart. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. If opportunity doesnt knock, build a door. A man is not old until regrets take the place of dreams. You must be the change you wish to see in the world. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. A man is not old until regrets take the place of dreams. What you get by achieving your goals is not as important as what you become by achieving your goals. The first step is as good as half over. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. If you wait, all that happens is you get older. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. If the plan doesnt work, change the plan, but never the goal. The past has no power over the present moment. Flexible settings enable you to set up a custom key for comparison and synchronization. What you get by achieving your goals is not as important as what you become by achieving your goals. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Sometimes you win, sometimes you learn. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. A comfort zone is a beautiful place, but nothing ever grows there. The repo
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('143', '/Users/Administrator/Pictures/img_949519.png', 'AJIyi', NULL, NULL, 'ijP948RWlT', '2-3-16 Yoyogi, Shibuya-ku', NULL, '2023-01-05 12:15:27', '2010-11-08 17:35:20', 837.0559, 'Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. I will greet this day with love in my heart. If it scares you, it might be a good thing to try. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information.', 'The On Startup feature allows you to control what tabs appear when you launch Navicat. Actually it is just in an idea when feel oneself can achieve and cannot achieve. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Flexible settings enable you to set up a custom key for comparison and synchronization. How we spend our days is, of course, how we spend our lives. The On Startup feature allows you to control what tabs appear when you launch Navicat. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. In the middle of winter I at last discovered that there was in me an invincible summer. Anyone who has never made a mistake has never tried anything new. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. In the middle of winter I at last discovered that there was in me an invincible summer. In the middle of winter I at last discovered that there was in me an invincible summer. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Difficult circumstances serve as a textbook of life for people. Genius is an infinite capacity for taking pains. You will succeed because most people are lazy. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The Synchronize to Database function will
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('144', 'C:\\Users\\Administrator\\Pictures\\img_739088.png', '6GPwY', NULL, NULL, 'yig21WGilZ', '869 West Houston Street', NULL, '2023-12-17 21:35:57', '2021-09-23 02:37:23', 715.8069, 'A query is used to extract data from the database in a readable format according to the user\'s request. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. A man is not old until regrets take the place of dreams. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. There is no way to happiness. Happiness is the way. The first step is as good as half over. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. A mans best friends are his ten fingers. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Genius is an infinite capacity for taking pains. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Anyone who has never made a mistake has never tried anything new. A comfort zone is a beautiful place, but nothing ever grows there. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. A man is not old until regrets take the place of dreams. A mans best friends are his ten fingers. If the plan doesnt work, change the plan, but never the goal. To connect to a database or schema, simply double-click it in the pane. Genius is an infinite capacity for taking pains. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Sometimes you win, sometimes you learn. To connect to a database or schema, simply double-click it in the pane. Champions keep playing until they get it right. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Anyone who has never made a mistake has never tried anything new. A comfort zone is a beautiful place, but nothing ever grows there. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. You will succeed because most people are lazy. Navicat Cloud provides a cloud service for synchronizing connections, queries, mode
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('145', '/home/Administrator/Pictures/img_216112.png', 'ZrErn', NULL, NULL, 'wSKDBOOt4d', '473 Canal Street', NULL, '2024-08-20 09:45:22', '2021-02-03 12:48:43', 985.0471, 'The past has no power over the present moment. If you wait, all that happens is you get older. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The first step is as good as half over. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The past has no power over the present moment. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Genius is an infinite capacity for taking pains. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Flexible settings enable you to set up a custom key for comparison and synchronization. What you get by achieving your goals is not as important as what you become by achieving your goals. All journeys have secret destinations of which the traveler is unaware. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. If the plan doesnt work, change the plan, but never the goal. What you get by achieving your goals is not as important as what you become by achieving your goals. A comfort zone is a beautiful place, but nothing ever grows there. Navicat 15 has added support for the system-wide dark mode. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. What you get by achieving your goals is not as important as what you become by achieving your goals. Anyone who has ever made anything of importance was disciplined. If it scares you, it might be a good thing to try. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The reason why a great man is great is
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('146', '/home/Administrator/Pictures/img_159513.jpg', 'gCnd3', NULL, NULL, 'QvPAkDals2', '840 Jingtian East 1st St, Futian District', NULL, '2021-08-17 12:11:37', '2005-04-10 22:39:04', 518.7853, 'HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Success consists of going from failure to failure without loss of enthusiasm. Anyone who has never made a mistake has never tried anything new. Remember that failure is an event, not a person. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. The On Startup feature allows you to control what tabs appear when you launch Navicat. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. The Synchronize to Database function will give you a full picture of all database differences. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Genius is an infinite capacity for taking pains. You will succeed because most people are lazy. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Success consists of going from failure to failure without loss of enthusiasm. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. The first step is as good as half over. The Synchronize to Database function will give you a full picture of all database differences. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Success consists of going from failure to failure without loss of enthusiasm. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. You will succeed because most people are lazy. The first step is as good as half over. How we spend our days is, of course, how we spend our lives. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. The Synchronize
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('147', 'C:\\Users\\Administrator\\Pictures\\img_314214.jpg', 'V4w14', NULL, NULL, 'nkNHBGBGlJ', '645 Grape Street', NULL, '2023-11-17 13:03:57', '2013-08-15 20:47:12', 538.8104, 'You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Genius is an infinite capacity for taking pains. I destroy my enemies when I make them my friends. You must be the change you wish to see in the world. Optimism is the one quality more associated with success and happiness than any other. A man is not old until regrets take the place of dreams. To connect to a database or schema, simply double-click it in the pane. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Creativity is intelligence having fun. Anyone who has ever made anything of importance was disciplined. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Success consists of going from failure to failure without loss of enthusiasm. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. In the middle of winter I at last discovered that there was in me an invincible summer. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The past has no power over the present moment. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. There is no way to happiness. Happiness is the way. You must be the change you wish to see in the world. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. To connect to a database or schema, simply double-click it in the pane. The On Startup feature allows you to control what tabs appear when you launch Navicat. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. There is no way to happiness. Happiness is the way. You must be the change you wish to see in the world. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Remember that failure is an event, not a person. The first step is as good as half over. Success consists of going from failure to failure without loss of enthusiasm. To connect to a database or schema, simply double-click it in the pane. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat 15 has added support for the system-wide dark mode. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('148', '/home/Administrator/Pictures/img_609099.jpg', 'dgnuD', NULL, NULL, 'XMgKOuqeKs', '183 Central Avenue', NULL, '2022-02-19 18:45:17', '2009-11-09 21:10:30', 323.0773, 'Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Actually it is just in an idea when feel oneself can achieve and cannot achieve. The On Startup feature allows you to control what tabs appear when you launch Navicat. If the plan doesnt work, change the plan, but never the goal. All journeys have secret destinations of which the traveler is unaware. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. A comfort zone is a beautiful place, but nothing ever grows there. The past has no power over the present moment. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Remember that failure is an event, not a person. A mans best friends are his ten fingers. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The Synchronize to Database function will give you a full picture of all database differences. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Champions keep playing until they get it right. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Flexible settings enable you to set up a custom key for comparison and synchronization. You cannot save people, you can just love them. You will succeed because most people are lazy. In the middle of winter I at last discovered that there was in me an invincible summer. If opportunity doesnt knock, build a door. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. If opportunity doesnt knock, build a door. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Anyone who has never made a mistake has never tried anything new. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat authoriz
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('149', '/Users/Administrator/Pictures/img_199466.jpg', 'R0FeP', NULL, NULL, 'ZiRPNCS3x4', '546 028 County Rd, Yanqing District', NULL, '2022-11-15 08:35:29', '2001-08-20 20:02:35', 762.2650, 'Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Anyone who has never made a mistake has never tried anything new. Anyone who has never made a mistake has never tried anything new. There is no way to happiness. Happiness is the way. Anyone who has ever made anything of importance was disciplined. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The first step is as good as half over. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The On Startup feature allows you to control what tabs appear when you launch Navicat. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Genius is an infinite capacity for taking pains. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Flexible settings enable you to set up a custom key for comparison and synchronization. Remember that failure is an event, not a person. The first step is as good as half over. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. If the plan doesnt work, change the plan, but never the goal. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. You will succeed because most people are lazy. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. How we spend our days is, of course, how we spend our lives. If it scares you, it might be a good thing to try. You cannot save people, you can just love them. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. To successfully establish a new connection to local/remote serv
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('15', 'C:\\Users\\Administrator\\Pictures\\img_798965.png', 'nsrEJ', NULL, NULL, 'f9JBeTycpK', '62 Figueroa Street', NULL, '2024-09-19 03:43:05', '2024-04-18 07:06:49', 564.8268, 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. If opportunity doesnt knock, build a door. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Actually it is just in an idea when feel oneself can achieve and cannot achieve. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat 15 has added support for the system-wide dark mode. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Remember that failure is an event, not a person. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. If you wait, all that happens is you get older. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. There is no way to happiness. Happiness is the way. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. A mans best friends are his ten fingers. What you get by achieving your goals is not as important as what you become by achieving your goals. Anyone who has ever made anything of importance was disciplined. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('150', '/Users/Administrator/Pictures/img_921900.png', 'K1sl8', NULL, NULL, 'P4WNGXeYzf', '242 Whitehouse Lane, Huntingdon Rd', NULL, '2023-06-13 11:04:20', '2019-10-24 08:55:08', 968.0764, 'Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. You cannot save people, you can just love them. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Genius is an infinite capacity for taking pains. The past has no power over the present moment. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. To connect to a database or schema, simply double-click it in the pane. To connect to a database or schema, simply double-click it in the pane. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The Synchronize to Database function will give you a full picture of all database differences. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. The reason why a great man is great is that he resolves to be a great man. Success consists of going from failure to failure without loss of enthusiasm. Anyone who has never made a mistake has never tried anything new. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. A man is not old until regrets take the place of dreams. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Creativity is intelligence having fun. The first step is as good as half over. Success consists of going from failure to failure without loss of enthusiasm. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Sometimes you win, sometimes you learn. If you wait, all that happens is you get older. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. How we spend our days is, of course, how we spend our lives. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. I will greet this day with love in my heart. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat authori
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('151', 'C:\\Users\\Administrator\\Pictures\\img_090046.jpg', 'aKNSc', NULL, NULL, 'nGdNTDrDaj', '1-1-12 Deshiro, Nishinari Ward', NULL, '2020-11-21 13:24:31', '2005-01-03 17:58:57', 704.3070, 'Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Difficult circumstances serve as a textbook of life for people. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Remember that failure is an event, not a person. Success consists of going from failure to failure without loss of enthusiasm. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Champions keep playing until they get it right. Champions keep playing until they get it right. Remember that failure is an event, not a person. In the middle of winter I at last discovered that there was in me an invincible summer. Actually it is just in an idea when feel oneself can achieve and cannot achieve. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. If you wait, all that happens is you get older. Success consists of going from failure to failure without loss of enthusiasm. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. The On Startup feature allows you to control what tabs appear when you launch Navicat. Anyone who has ever made anything of importance was disciplined. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. How we spend our days is, of course, how we spend our lives. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Flexible settings enable you to set up a custom key for comparison and synchronization. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. In the middle of winter I at last discovered that there was in me an invincible summer. What you get by achieving your goals is not as important as what you become by achieving your goals. The reason why a great man is great is that he resolves to be a great man. Anyone who has ever made anything of importance was disciplined. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. To connect to a database or schema, simply double-click it in the pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('152', '/home/Administrator/Pictures/img_496535.png', 'Nf3F2', NULL, NULL, 'zke43KQ8n9', '32 Rush Street', NULL, '2020-02-25 18:22:30', '2001-05-17 15:52:08', 597.2376, 'Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. I destroy my enemies when I make them my friends. It wasnt raining when Noah built the ark. I destroy my enemies when I make them my friends. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. You must be the change you wish to see in the world. You will succeed because most people are lazy. A mans best friends are his ten fingers. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. In the middle of winter I at last discovered that there was in me an invincible summer. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. A man is not old until regrets take the place of dreams. Remember that failure is an event, not a person. If you wait, all that happens is you get older. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. The past has no power over the present moment. Remember that failure is an event, not a person. The reason why a great man is great is that he resolves to be a great man. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat 15 has added support for the system-wide dark mode. It wasnt raining when Noah built the ark. You cannot save people, you can just love them. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats.', 'Genius is an infinite capacity for taking pains. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat Monitor requires a repository to store alerts and metrics for
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('153', '/Users/Administrator/Pictures/img_979634.png', '4Kvnb', NULL, NULL, 'mAj84Kj8I2', '511 Whitehouse Lane, Huntingdon Rd', NULL, '2024-05-02 05:55:54', '2018-11-06 23:49:01', 229.9446, 'The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Anyone who has never made a mistake has never tried anything new. A comfort zone is a beautiful place, but nothing ever grows there. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. There is no way to happiness. Happiness is the way. If it scares you, it might be a good thing to try. You must be the change you wish to see in the world. Optimism is the one quality more associated with success and happiness than any other. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. It wasnt raining when Noah built the ark. Optimism is the one quality more associated with success and happiness than any other. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The On Startup feature allows you to control what tabs appear when you launch Navicat. I destroy my enemies when I make them my friends. You must be the change you wish to see in the world. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Champions keep playing until they get it right. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Champions keep playing until they get it right. A man is not old until regrets take the place of dreams. What you get by achieving your goals is not as important as what you become by achieving your goals. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Data Modeler enables you to b
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('154', '/home/Administrator/Pictures/img_706771.png', 'Nv0Qh', NULL, NULL, 'XtBY9cnO1G', '700 Diplomacy Drive', NULL, '2024-04-06 12:00:40', '2015-10-19 01:03:59', 233.5824, 'Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily.', 'What you get by achieving your goals is not as important as what you become by achieving your goals. Remember that failure is an event, not a person. Anyone who has ever made anything of importance was disciplined. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. There is no way to happiness. Happiness is the way. I will greet this day with love in my heart. Creativity is intelligence having fun. Creativity is intelligence having fun. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Flexible settings enable you to set up a custom key for comparison and synchronization. To connect to a database or schema, simply double-click it in the pane. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Optimism is the one quality more associated with success and happiness than any other. The first step is as good as half over. There is no way to happiness. Happiness is the way. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. All journeys have secret destinations of which the traveler is unaware. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. I will greet this day with love in my heart. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. A man is not old until regrets take the place of dreams. Typically, it is employed as an encrypted ve
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('155', 'C:\\Users\\Administrator\\Pictures\\img_784182.jpg', 'xxHLi', NULL, NULL, 'liXnxvErxL', '590 Lefeng 6th Rd', NULL, '2021-07-29 06:50:30', '2023-11-01 03:23:07', 659.9988, 'Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. A man is not old until regrets take the place of dreams. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Anyone who has never made a mistake has never tried anything new. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. You cannot save people, you can just love them. I may not have gone where I intended to go, but I think I have ended up where I needed to be. How we spend our days is, of course, how we spend our lives. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. You cannot save people, you can just love them. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. There is no way to happiness. Happiness is the way. The Synchronize to Database function will give you a full picture of all database differences. Flexible settings enable you to set up a custom key for comparison and synchronization. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. If it scares you, it might be a good thing to try. The first step is as good as half over. Remember that failure is an event, not a person. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. I will greet this day with love in my heart. Anyone who has ever made anything of importance was disciplined. You will succeed because most people are lazy. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. I destroy my enemies when I make them my friends. You can select any connections, objects or projects, and then select the correspon
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('156', '/home/Administrator/Pictures/img_007458.jpg', 'FoAva', NULL, NULL, '8jm9BUiSO5', '10 1-1715 Sekohigashi, Moriyama Ward', NULL, '2023-03-07 23:39:07', '2014-10-19 14:54:36', 740.7169, 'If the plan doesnt work, change the plan, but never the goal. Success consists of going from failure to failure without loss of enthusiasm. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. A query is used to extract data from the database in a readable format according to the user\'s request. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Genius is an infinite capacity for taking pains. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. I will greet this day with love in my heart. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Anyone who has never made a mistake has never tried anything new. A mans best friends are his ten fingers. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Success consists of going from failure to failure without loss of enthusiasm. Success consists of going from failure to failure without loss of enthusiasm. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Typically, it is employed as an encrypted version of Telnet. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Actually it is just in an idea when feel oneself can achieve and cannot achieve. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Flexible settings enable you to set up a custom key for comparison
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('157', '/Users/Administrator/Pictures/img_705133.jpg', 'GZEQY', NULL, NULL, 'YuaUcpfrix', '905 49/50 Strand, Charing Cross', NULL, '2020-07-28 21:23:09', '2020-06-29 11:37:39', 380.3032, 'The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. The Synchronize to Database function will give you a full picture of all database differences. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane.', 'Optimism is the one quality more associated with success and happiness than any other. Anyone who has ever made anything of importance was disciplined. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. I may not have gone where I intended to go, but I think I have ended up where I needed to be. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. The first step is as good as half over. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Flexible settings enable you to set up a custom key for comparison and synchronization. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The Synchronize to Database function will give you a full picture of all database differences. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Anyone who has ever made anything of importance was disciplined. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat allows you to
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('158', '/home/Administrator/Pictures/img_726177.png', 'E7UQV', NULL, NULL, 'aZXn3WFgCs', '890 Cannon Street', NULL, '2022-08-16 02:29:32', '2002-01-17 12:47:31', 723.4581, 'The reason why a great man is great is that he resolves to be a great man. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. If the plan doesnt work, change the plan, but never the goal. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. A man is not old until regrets take the place of dreams.', 'HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Sometimes you win, sometimes you learn. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. All journeys have secret destinations of which the traveler is unaware. Genius is an infinite capacity for taking pains. Navicat 15 has added support for the system-wide dark mode. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Success consists of going from failure to failure without loss of enthusiasm. I destroy my enemies when I make them my friends. Optimism is the one quality more associated with success and happiness than any other. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Success consists of going from failure to failure without loss of enthusiasm. I will greet this day with love in my heart. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. The Synchronize to Database function will give you a full picture of all database differences. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. I
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('159', '/Users/Administrator/Pictures/img_604906.jpg', '30w6t', NULL, NULL, 'pcvSYsYR0E', '775 Osney Mead', NULL, '2024-06-18 06:00:53', '2010-06-15 12:29:45', 369.2075, 'The first step is as good as half over. It wasnt raining when Noah built the ark. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If you wait, all that happens is you get older. The first step is as good as half over. Success consists of going from failure to failure without loss of enthusiasm. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. A comfort zone is a beautiful place, but nothing ever grows there. A mans best friends are his ten fingers. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. If opportunity doesnt knock, build a door. In the middle of winter I at last discovered that there was in me an invincible summer. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. You must be the change you wish to see in the world. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences.', 'What you get by achieving your goals is not as important as what you become by achieving your goals. Creativity is intelligence having fun. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Actually it is just in an idea when feel oneself can achieve and cannot achieve. What you get by achieving your goals is not as important as what you become by achieving your goals. If you wait, all that happens is you get older. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Typically, it is employed as an encrypted version of Telnet. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. There is no way to happiness. Happiness is the way. Sometimes you win, sometimes you learn. Difficult circumstances serve as a textbook of life for people. How we spend our days is, of course, how we spend our lives. To clear or reload va
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('16', '/Users/Administrator/Pictures/img_345248.png', 'VPUzv', NULL, NULL, '378jeYQ1ji', '540 Middle Huaihai Road, Huangpu District', NULL, '2020-01-27 01:01:35', '2004-09-18 11:52:36', 22.8611, 'After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. You cannot save people, you can just love them. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Anyone who has never made a mistake has never tried anything new. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Champions keep playing until they get it right. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Success consists of going from failure to failure without loss of enthusiasm. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Difficult circumstances serve as a textbook of life for people. If the plan doesnt work, change the plan, but never the goal. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Anyone who has never made a mistake has never tried anything new. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The Synchronize to Database function will give you a full picture of all database differences. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. The past has no power over the present moment. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. If it scares you, it might be a good thing to try. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Typically, it is employed as an encrypted version of Telnet. Always keep your eyes open. Keep watching. Because whatever you se
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('160', '/Users/Administrator/Pictures/img_576821.png', 'I1ssb', NULL, NULL, '9ymR0Xsf7d', '394 NO.6, YuShuang Road, ChengHua Distric', NULL, '2020-08-02 11:25:16', '2018-02-10 17:24:39', 878.0033, 'Remember that failure is an event, not a person. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Creativity is intelligence having fun. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. There is no way to happiness. Happiness is the way. Flexible settings enable you to set up a custom key for comparison and synchronization. If the plan doesnt work, change the plan, but never the goal. Success consists of going from failure to failure without loss of enthusiasm. If it scares you, it might be a good thing to try. You must be the change you wish to see in the world. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. I destroy my enemies when I make them my friends. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The reason why a great man is great is that he resolves to be a great man. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. To connect to a database or schema, simply double-click it in the pane. I will greet this day with love in my heart. Sometimes you win, sometimes you learn. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. A man is not old until regrets take the place of dreams. If the plan doesnt work, change the plan, but never the goal. Genius is an infinite capacity for taking pains. Anyone who has ever made anything of importance was disciplined. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. You cannot save people, you can just love them. The On Startup feature allows you to control what tabs appear when you launch Navicat. Optimism is the one quality more as
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('161', 'C:\\Users\\Administrator\\Pictures\\img_346828.jpg', 'QCkaJ', NULL, NULL, 'gUyCfjFKuG', '508 Elms Rd, Botley', NULL, '2024-08-01 05:17:03', '2007-06-20 13:03:04', 372.6670, 'I destroy my enemies when I make them my friends. The On Startup feature allows you to control what tabs appear when you launch Navicat. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. A man is not old until regrets take the place of dreams. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. You must be the change you wish to see in the world. The past has no power over the present moment. If you wait, all that happens is you get older. If opportunity doesnt knock, build a door. To connect to a database or schema, simply double-click it in the pane. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. You must be the change you wish to see in the world. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. If opportunity doesnt knock, build a door. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Optimism is the one quality more associated with success and happiness than any other. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Anyone who has ever made anything of importance was disciplined. The reason why a great man is great is that he resolves to be a great man. Champions keep playing until they get it right. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane.', 'Always keep your eyes open. Keep watching. Because whatever you see can inspire you. There is no way to happiness. Happiness is the way. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. A mans best friends are his ten fingers. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. You must be the change you wish to see in the world. Flexible settings enable you to set up a custom key for comparison and synchronization. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. The first step is as good as half over. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('162', '/home/Administrator/Pictures/img_944897.png', '8HVHA', NULL, NULL, 'IpXUtFZS8a', '307 Abingdon Rd, Cumnor', NULL, '2020-08-27 18:18:47', '2003-05-20 08:15:14', 678.8749, 'The Synchronize to Database function will give you a full picture of all database differences. If the plan doesnt work, change the plan, but never the goal. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. In the middle of winter I at last discovered that there was in me an invincible summer. Flexible settings enable you to set up a custom key for comparison and synchronization. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. If you wait, all that happens is you get older. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. All journeys have secret destinations of which the traveler is unaware. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Success consists of going from failure to failure without loss of enthusiasm. Champions keep playing until they get it right. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Remember that failure is an event, not a person. The first step is as good as half over. You cannot save people, you can just love them. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. If it scares you, it might be a good thing to try. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat 15 has added support for the system-wide dark mode. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. I will greet this day with love in my heart. If the plan doesnt work, change the plan, but never the goal. Sometimes you win, sometimes you learn. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Creativity is intelligence having fun. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. A comfort zone is a beautiful place, but nothing ever grows there. You must be the change you wish to see in the world. How we spend our days is, of course, how we spend our lives. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. You can select
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('163', '/home/Administrator/Pictures/img_244810.jpg', 'Ou13G', NULL, NULL, 'aRRjB4fyUP', '3-27-10 Higashitanabe, Higashisumiyoshi Ward', NULL, '2024-11-02 10:59:18', '2007-07-08 05:14:22', 40.2055, 'I will greet this day with love in my heart. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. All journeys have secret destinations of which the traveler is unaware. A man is not old until regrets take the place of dreams. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Remember that failure is an event, not a person. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server.', 'It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If opportunity doesnt knock, build a door. A query is used to extract data from the database in a readable format according to the user\'s request. The first step is as good as half over. Champions keep playing until they get it right. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Sometimes you win, sometimes you learn. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Champions keep playing until they get it right. The first step is as good as half over. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. The On Startup feature allows you to control what tabs appear when you launch Navicat. Secure SHell (SSH) is a program to log in into another computer over a network, execute co
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('164', '/home/Administrator/Pictures/img_944767.jpg', 'zHdYx', NULL, NULL, 'h6yyESbRcr', '7 1-1 Honjocho, Yamatokoriyama', NULL, '2024-09-25 11:57:22', '2006-05-07 02:45:11', 335.9595, 'Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. A mans best friends are his ten fingers. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Anyone who has ever made anything of importance was disciplined. The first step is as good as half over. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Genius is an infinite capacity for taking pains. It wasnt raining when Noah built the ark. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. How we spend our days is, of course, how we spend our lives. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Creativity is intelligence having fun. It wasnt raining when Noah built the ark. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Sometimes you win, sometimes you learn. In the middle of winter I at last discovered that there was in me an invincible summer. You must be the change you wish to see in the world. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Creativity is intelligence having fun. A mans best friends are his ten fingers. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Actually it is just in an idea when feel oneself can achieve and cannot achieve. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. All journeys have secret destinations of which the traveler is unaware. In
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('165', 'C:\\Users\\Administrator\\Pictures\\img_385427.jpg', '4k9DT', NULL, NULL, '3IA7LaQiUm', '725 State Street', NULL, '2021-10-28 05:41:02', '2006-01-08 19:37:37', 575.1864, 'Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Anyone who has ever made anything of importance was disciplined. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The Synchronize to Database function will give you a full picture of all database differences. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat 15 has added support for the system-wide dark mode. The first step is as good as half over. Actually it is just in an idea when feel oneself can achieve and cannot achieve. If the plan doesnt work, change the plan, but never the goal. If opportunity doesnt knock, build a door. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. A comfort zone is a beautiful place, but nothing ever grows there. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance.', 'Typically, it is employed as an encrypted version of Telnet. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Flexible settings enable you to set up a custom key for comparison and synchronization. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SS
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('166', '/home/Administrator/Pictures/img_736944.png', 'EOIyj', NULL, NULL, 'eVQXMBli7w', '220 East Wangfujing Street, Dongcheng District ', NULL, '2020-04-16 13:29:31', '2005-06-17 21:29:50', 626.7574, 'Anyone who has ever made anything of importance was disciplined. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. You cannot save people, you can just love them. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. If the plan doesnt work, change the plan, but never the goal. You will succeed because most people are lazy. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Sometimes you win, sometimes you learn. The first step is as good as half over. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The first step is as good as half over. Remember that failure is an event, not a person. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Typically, it is employed as an encrypted version of Telnet. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. A comfort zone is a beautiful place, but nothing ever grows there. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Diffic
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('167', 'C:\\Users\\Administrator\\Pictures\\img_789423.jpg', 'BGcYs', NULL, NULL, 'frkYERDeNx', '791 Aigburth Rd, Aigburth', NULL, '2024-03-21 00:38:06', '2003-07-16 08:52:51', 308.6635, 'The first step is as good as half over. If the plan doesnt work, change the plan, but never the goal. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from.', 'What you get by achieving your goals is not as important as what you become by achieving your goals. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab.', NULL, 'Optimism is the one quality more associated with success and happiness than any other. Difficult circumstances serve as a textbook of life for people. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. If the plan doesnt work, change the plan, but never the goal. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. If it scares you, it might be a good thing to try. Remember that failure is an event, not a person. The reason why a great man is great is that he resolves to be a great man. It wasnt raining when Noah built the ark. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. It wasnt raining when Noah built the ark. Optimism is the one quality more associated with success and happiness than any other. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Success consists of going from failure to failure without loss of enthusiasm. Difficult circumstances serve as a textbook of life for people. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. The Synchronize to Database function will give you a full picture of all database differences. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. You will succeed b
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('168', '/home/Administrator/Pictures/img_248092.jpg', 'ZsixR', NULL, NULL, 'sEnGEnElDO', '3-15-11 Ginza, Chuo-ku', NULL, '2024-08-12 10:05:09', '2020-03-28 00:45:40', 512.3843, 'Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Champions keep playing until they get it right. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. If the plan doesnt work, change the plan, but never the goal. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually.', 'The first step is as good as half over. Difficult circumstances serve as a textbook of life for people. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. A query is used to extract data from the database in a readable format according to the user\'s request. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. You must be the change you wish to see in the world. Creativity is intelligence having fun. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. The past has no power over the present moment.', NULL, 'If the plan doesnt work, change the plan, but never the goal. Typically, it is employed as an encrypted version of Telnet. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. How we spend our days is, of course, how we spend our lives. Genius is an infinite capacity for taking pains. Flexible settings enable you to set up a custom key for comparison and synchronization. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Genius is an infinite capacity for taking pains. Remember that failure is an event, not a person. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. If you wait, all that happens is you get older. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. You cannot save people, you can just love them. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. If it scares you, it might be a good thing to try. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Success consists of going from failure to failure without loss of enthusiasm. Creativity is intelli
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('169', 'C:\\Users\\Administrator\\Pictures\\img_506283.png', 'hw1lq', NULL, NULL, 'v4riIJoAAW', '670 68 Qinghe Middle St, Haidian District', NULL, '2020-08-20 05:59:32', '2014-02-02 18:29:21', 751.3991, 'To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. You will succeed because most people are lazy. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. You must be the change you wish to see in the world. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. If the plan doesnt work, change the plan, but never the goal. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. All journeys have secret destinations of which the traveler is unaware. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. You cannot save people, you can just love them. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. You cannot save people, you can just love them. Navicat provides powerful tools for working with
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('17', '/Users/Administrator/Pictures/img_880901.jpg', 'XCvS8', NULL, NULL, 'l2KxUaNWHY', '1-1-6 Deshiro, Nishinari Ward', NULL, '2023-05-31 15:27:03', '2023-05-23 14:54:13', 972.0231, 'The reason why a great man is great is that he resolves to be a great man. You cannot save people, you can just love them. A man is not old until regrets take the place of dreams. The On Startup feature allows you to control what tabs appear when you launch Navicat. Anyone who has never made a mistake has never tried anything new. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Actually it is just in an idea when feel oneself can achieve and cannot achieve. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. How we spend our days is, of course, how we spend our lives. Navicat 15 has added support for the system-wide dark mode. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat 15 has added support for the system-wide dark mode. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. The On Startup feature allows you to control what tabs appear when you launch Navicat. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To connect to a database or schema, simply double-click it in the pane. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. A query is used to extract data from the database in a readable format according to the user\'s request. I may not have gone where I intended to go, but I think I have ended up where I needed to be. A query is used to extract data from the database in a readable format according to the user\'s request. Success consists of going from failure to failure without loss of enthusiasm. A comfort zone is a beautiful place, but nothing ever grows there. If the plan doesnt work, change the plan, but never the goal. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The On Startup feature allows you to control what tabs appear when you launch Navicat. Anyone who has ever made anything of importance was disciplined. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. All journeys have secret destinations of which the traveler is unaware. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. There is no way to happiness. Happiness is the way. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('170', 'C:\\Users\\Administrator\\Pictures\\img_979445.jpg', 'vxrBs', NULL, NULL, 'CwpbRQRd7S', '1-1-17 Deshiro, Nishinari Ward', NULL, '2022-09-09 06:46:57', '2016-06-03 14:58:58', 329.5405, 'Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. If you wait, all that happens is you get older. A man is not old until regrets take the place of dreams. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Flexible settings enable you to set up a custom key for comparison and synchronization. Optimism is the one quality more associated with success and happiness than any other. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. A man is not old until regrets take the place of dreams. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Anyone who has never made a mistake has never tried anything new. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible.', 'HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. I may not have gone where I intended to go, but I think I have ended up where I needed to be. You will succeed because most people are lazy. Anyone who has ever made anything of importance was disciplined. Creativity is intelligence having fun. A comfort zone is a beautiful place, but nothing ever grows there. Navicat 15 has added support for the system-wide dark mode. Anyone who has never made a mistake has never tried anything new. It wasnt raining when Noah built the ark. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Actually it is just in an idea when feel oneself can achieve and cannot achieve. How we spend our days is, of course, how we spend our lives. Anyone who has ever made anything of importance was disciplined. Actually it is just in an idea when feel oneself can achieve
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('171', '/home/Administrator/Pictures/img_306908.jpg', 'iOE0V', NULL, NULL, 'PYVetuOOHh', '8 North Michigan Ave', NULL, '2024-07-17 17:58:30', '2009-08-07 03:02:53', 697.6718, 'Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Anyone who has ever made anything of importance was disciplined. Remember that failure is an event, not a person. The On Startup feature allows you to control what tabs appear when you launch Navicat. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. A mans best friends are his ten fingers. There is no way to happiness. Happiness is the way. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. You must be the change you wish to see in the world. You cannot save people, you can just love them. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The Synchronize to Database function will give you a full picture of all database differences. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. There is no way to happiness. Happiness is the way. How we spend our days is, of course, how we spend our lives. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Champions keep playing until they get it right. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. The Synchronize to Database function will give you a full picture of all database differences. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. You must be the change you wish to see in the world. Remember that failure is an event, not a person. Difficult circumstances serve as a textbook of life for people. If it scares you, it might be a good thing to try. It wasnt raining when Noah built the ark. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The Synchronize to Database function will give you a full picture of all database differences. What you get by achieving y
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('172', '/home/Administrator/Pictures/img_737073.jpg', 'ZdhLx', NULL, NULL, 'H7fcOABPwA', '3-27-4 Higashitanabe, Higashisumiyoshi Ward', NULL, '2023-11-04 11:07:12', '2009-08-17 07:55:20', 369.8063, 'Remember that failure is an event, not a person. Navicat 15 has added support for the system-wide dark mode. To connect to a database or schema, simply double-click it in the pane. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Anyone who has ever made anything of importance was disciplined. Difficult circumstances serve as a textbook of life for people. Flexible settings enable you to set up a custom key for comparison and synchronization. A man is not old until regrets take the place of dreams. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. All journeys have secret destinations of which the traveler is unaware. Flexible settings enable you to set up a custom key for comparison and synchronization. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. To connect to a database or schema, simply double-click it in the pane. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. You must be the change you wish to see in the world. Anyone who has never made a mistake has never tried anything new. Genius is an infinite capacity for taking pains. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. A mans best friends are his ten fingers. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Difficult circumstances serve as a textbook of life for people. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. The On Startup feature allows you to control what tabs appear when you launch Navicat. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. I destroy my enemies when I make them my friends. You will succeed because most people are lazy. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('173', '/home/Administrator/Pictures/img_943835.png', 'Cb5yI', NULL, NULL, 'w3k7FmZDnF', '830 Cannon Street', NULL, '2024-04-10 11:56:22', '2006-12-29 22:28:38', 209.9335, 'Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The On Startup feature allows you to control what tabs appear when you launch Navicat. Anyone who has ever made anything of importance was disciplined. A query is used to extract data from the database in a readable format according to the user\'s request. A comfort zone is a beautiful place, but nothing ever grows there. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. The Synchronize to Database function will give you a full picture of all database differences. Navicat 15 has added support for the system-wide dark mode. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Typically, it is employed as an encrypted version of Telnet. You cannot save people, you can just love them. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. I will greet this day with love in my heart. I will greet this day with love in my heart. The reason why a great man is great is that he resolves to be a great man. Flexible settings enable you to set up a custom key for comparison and synchronization. What you get by achieving your goals is not as important as what you become by achieving your goals. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. To connect to a database or schema, simply double-click it in the pane. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. All journeys have secret destinations of which the traveler is unaware
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('174', '/home/Administrator/Pictures/img_364687.jpg', 'S1RzM', NULL, NULL, '5AWX5VrSq3', '885 Narborough Rd', NULL, '2021-09-18 01:55:04', '2020-04-14 08:58:22', 2.0212, 'I will greet this day with love in my heart. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat 15 has added support for the system-wide dark mode. Genius is an infinite capacity for taking pains. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Creativity is intelligence having fun. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Typically, it is employed as an encrypted version of Telnet. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Genius is an infinite capacity for taking pains. Champions keep playing until they get it right. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. In the middle of winter I at last discovered that there was in me an invincible summer. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Optimism is the one quality more associated with success and happiness than any other. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. You will succeed because most people are lazy. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. A mans best friends are his ten fingers. A man is not old until regrets take the place of dreams. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Actually it is just in an idea when feel oneself can achieve and cannot achieve. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If opportunity doesnt knock, build a door. Such sessions are also susceptible to session hijacking, wh
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('175', '/home/Administrator/Pictures/img_626880.jpg', 'KwF7j', NULL, NULL, '27iLJYBPyr', '925 Canal Street', NULL, '2021-10-15 10:40:42', '2017-08-23 11:29:37', 708.2825, 'After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Flexible settings enable you to set up a custom key for comparison and synchronization. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The past has no power over the present moment. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. The reason why a great man is great is that he resolves to be a great man. Champions keep playing until they get it right. You must be the change you wish to see in the world. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The On Startup feature allows you to control what tabs appear when you launch Navicat. The first step is as good as half over. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. A man is not old until regrets take the place of dreams. Difficult circumstances serve as a textbook of life for people. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. There is no way to happiness. Happiness is the way. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. All journeys have secret destinations of which the traveler is unaware. Actually it is just in an idea when feel oneself can achieve and cannot achieve. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Flexible settings enable you to set up a custom key for comparison and synchronization. It wasnt raining when Noah built the ark. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Anyone who has never made a mistake has never tried anything new. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. In a Telnet session, all communications
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('1757854781051010000', '/api/wcsdev/api/pub/task/cancelStockTask', 'DELETE', 'taskId=1111', 200, 'application/json', '127.0.0.1', '', '2025-09-14 20:59:41', '2025-09-14 20:59:41', -47.0000, '', '{\"code\":200,\"message\":\"任务不存在\"}', '', '');
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('1757854817913010000', '/api/wcsdev/api/pub/task/cancelStockTask', 'DELETE', 'taskId=1111', 200, 'application/json', '127.0.0.1', '', '2025-09-14 21:00:18', '2025-09-14 21:00:18', -51.0000, '', '{\"code\":200,\"message\":\"任务不存在\"}', '', '');
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('1757854841220010000', '/api/wcsdev/api/pub/task/cancelStockTask', 'DELETE', 'taskId=1111', 200, 'application/json', '127.0.0.1', '', '2025-09-14 21:00:41', '2025-09-14 21:00:41', -4.0000, '', '{\"code\":200,\"message\":\"任务不存在\"}', '', '');
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('1757854934521010000', '/api/wcsdev/api/pub/task/cancelStockTask', 'DELETE', 'taskId=1111', 200, 'application/json', '127.0.0.1', '', '2025-09-14 21:02:14', '2025-09-14 21:02:15', 47.0000, '', '{\"code\":200,\"message\":\"任务不存在\"}', '', '');
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('1758511255980010000', '/api/wcsdev/api/pub/task/cancelStockTask', 'DELETE', 'taskId=1111', 200, 'application/json', '127.0.0.1', '', '2025-09-22 11:20:56', '2025-09-22 11:20:56', 53.0000, '', '{\"code\":200,\"message\":\"任务不存在\"}', '', '');
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('176', '/Users/Administrator/Pictures/img_759898.png', 'nbpxI', NULL, NULL, 'E2AmTAgr9H', '13-3-3 Toyohira 3 Jo, Toyohira Ward', NULL, '2020-02-09 21:05:27', '2011-09-04 18:37:03', 359.6624, 'You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat 15 has added support for the system-wide dark mode. Anyone who has ever made anything of importance was disciplined. In the middle of winter I at last discovered that there was in me an invincible summer. The reason why a great man is great is that he resolves to be a great man. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. You will succeed because most people are lazy. In the middle of winter I at last discovered that there was in me an invincible summer. If you wait, all that happens is you get older. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. If it scares you, it might be a good thing to try. If it scares you, it might be a good thing to try. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. The first step is as good as half over. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Genius is an infinite capacity for taking pains. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. The On Startup feature allows you to control what tabs appear when you launch Navicat. What you get by achieving your goals is not as important as what you become by achieving your goals. If it scares you, it might be a good thing to try. All journeys have secret destinations of which the traveler is unaware. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. A mans best friends are his ten fingers. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat 15 has added support for the system-wide dark mode. To connect to a database or schema, simply double-click it in the pane. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. All journeys have secret destinations of which the traveler is unaware. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The first st
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('177', '/home/Administrator/Pictures/img_409064.png', 'lTAQQ', NULL, NULL, 'fMQe9gBm13', '183 West Houston Street', NULL, '2023-02-21 03:06:41', '2000-12-14 13:24:23', 711.1890, 'Navicat 15 has added support for the system-wide dark mode. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Success consists of going from failure to failure without loss of enthusiasm. You must be the change you wish to see in the world. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Genius is an infinite capacity for taking pains. Genius is an infinite capacity for taking pains. I may not have gone where I intended to go, but I think I have ended up where I needed to be.', 'Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Typically, it is employed as an encrypted version of Telnet. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The Synchronize to Database function will give you a full picture of all database differences. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. If opportunity doesnt knock, build a door. A query is used to extract data from the database in a readable format according to the user\'s request. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Sometimes you win, sometimes you learn. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. A query is used to extract data from the database in a readable format according to the user\'s request. The On Startup feature allows you to control what tabs appear when you launch Nav
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('178', '/Users/Administrator/Pictures/img_819471.jpg', 'LL7sQ', NULL, NULL, 'JyZROBpXan', '213 Fifth Avenue', NULL, '2021-12-19 23:13:37', '2024-04-30 06:01:39', 0.2120, 'I will greet this day with love in my heart. Sometimes you win, sometimes you learn. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To connect to a database or schema, simply double-click it in the pane. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. All journeys have secret destinations of which the traveler is unaware. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. If the plan doesnt work, change the plan, but never the goal. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. To connect to a database or schema, simply double-click it in the pane. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Anyone who has never made a mistake has never tried any
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('179', '/home/Administrator/Pictures/img_626574.jpg', 'BGUk2', NULL, NULL, '9uNsfrBFJ9', '594 Rush Street', NULL, '2021-11-17 16:14:52', '2020-12-08 08:11:12', 751.3208, 'If it scares you, it might be a good thing to try. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Sometimes you win, sometimes you learn. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Sometimes you win, sometimes you learn. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. To connect to a database or schema, simply double-click it in the pane. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. If you wait, all that happens is you get older. There is no way to happiness. Happiness is the way. The first step is as good as half over. The reason why a great man is great is that he resolves to be a great man. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. You must be the change you wish to see in the world. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. To connect to a database or schema, simply double-click it in the pane. The past has no power over the present moment. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. All journeys have secret destinations of which the traveler is unaware. A comfort zone is a beautiful place, but nothing ever grows there. The first step is as good as half over. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. I will greet this day with love in my heart. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('18', '/Users/Administrator/Pictures/img_407023.png', 'SSBYE', NULL, NULL, '7iyGPPNudY', '303 State Street', NULL, '2023-08-19 17:17:24', '2024-05-31 11:45:49', 223.1194, 'To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. In the middle of winter I at last discovered that there was in me an invincible summer. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. A mans best friends are his ten fingers. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The reason why a great man is great is that he resolves to be a great man. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Actually it is just in an idea when feel oneself can achieve and cannot achieve. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. What you get by achieving your goals is not as important as what you become by achieving your goals. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Flexible settings enable you to set up a custom key for comparison and synchronization. Difficult circumstances serve as a textbook of life for people. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. You will succeed because most people are lazy. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Remember that failure is an event, not a person. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. All journeys have secret destinations of which the traveler is unaware. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. If opportunity doesnt knock, build a door. Remember that failure is an event, not a person. To start working with your server in Navicat, you sho
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('180', '/home/Administrator/Pictures/img_755960.jpg', 'TmD0k', NULL, NULL, '4wRm9aoZqL', '2-1-10 Tenjinnomori, Nishinari Ward', NULL, '2020-09-16 01:50:38', '2016-05-03 20:33:02', 863.7535, 'The Synchronize to Database function will give you a full picture of all database differences. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. A mans best friends are his ten fingers. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. All journeys have secret destinations of which the traveler is unaware. The first step is as good as half over. The first step is as good as half over. It wasnt raining when Noah built the ark. Creativity is intelligence having fun. Genius is an infinite capacity for taking pains. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Actually it is just in an idea when feel oneself can achieve and cannot achieve. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The Synchronize to Database function will give you a full picture of all database differences. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Creativity is intelligence having fun. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. There is no way to happiness. Happiness is the way. What you get by achieving your goals is not as important as what you become by achieving your goals. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. The Synchronize to Database function will give you a full picture of all database differences. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server.', 'In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. In the middle of winter I at last discovered that there was in me an invincible summer. To open a query using an ext
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('181', '/home/Administrator/Pictures/img_171201.png', 'l39uX', NULL, NULL, 'UBB5EwxGY2', '762 Binchuan Rd, Minhang District', NULL, '2020-01-10 01:52:51', '2021-04-05 12:26:26', 963.8681, 'The Synchronize to Database function will give you a full picture of all database differences. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. It wasnt raining when Noah built the ark. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored.', 'To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Optimism is the one quality more associated with success and happiness than any other. You will succeed because most people are lazy. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. I will greet this day with love in my heart. Remember that failure is an event, not a person. There is no way to happiness. Happiness is the way. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. I destroy my enemies when I make them my friends. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Anyone who has ever made anything of importance was disciplined. You cannot save people, you can just love them. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. You will succeed because most people are lazy. A man is not old until regrets take the place of dreams. To connect to a database or schema, simply double-click it in the pane. In the middle of winter I at last discovered that there was in me an invincible summer. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. If you wait, all that happens is you get older. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. If the plan doesnt work, change the plan, but never the goal. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Anyone who has never made a mistake has never tried anything new. Navicat Cloud could not connect and access your databases. By which it means, it could only sto
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('182', '/home/Administrator/Pictures/img_398340.png', 'QAw7P', NULL, NULL, 'anrDBrrK6n', '710 Tianhe Road, Tianhe District', NULL, '2022-11-21 20:15:31', '2014-01-14 02:09:49', 216.8369, 'Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. I will greet this day with love in my heart. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The On Startup feature allows you to control what tabs appear when you launch Navicat. The Synchronize to Database function will give you a full picture of all database differences. If it scares you, it might be a good thing to try. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. A man is not old until regrets take the place of dreams. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. If you wait, all that happens is you get older. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Remember that failure is an event, not a person. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. If opportunity doesnt knock, build a door. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. A man is not old until regrets take the place of dreams. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Difficult circumstances serve as a textbook of life for people. The Synchronize to Database function will give you a full picture of all database differences. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. I destroy my enemies when I make them my friends. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat 15 has added support for the system-wide dark mode. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Actually it is just in an idea when feel oneself can achieve and cannot achieve. If you wait, all that happens is you get older. Navicat Cloud could not connect and access your databases. By which it means, it could only
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('183', '/Users/Administrator/Pictures/img_615525.png', 'kEQtU', NULL, NULL, 'glqYIm4ugU', '502 Lefeng 6th Rd', NULL, '2020-12-13 15:30:32', '2020-05-03 05:13:59', 474.5717, 'Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. In the middle of winter I at last discovered that there was in me an invincible summer. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. A query is used to extract data from the database in a readable format according to the user\'s request. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Optimism is the one quality more associated with success and happiness than any other. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. I destroy my enemies when I make them my friends. Navicat 15 has added support for the system-wide dark mode. If the plan doesnt work, change the plan, but never the goal. If opportunity doesnt knock, build a door. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more.', 'SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Navicat 15 has added support for the system-wide dark mode. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. A mans best friends are his ten fingers. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. How we spend our days is, of course, how we spend our lives. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Optimism is the one quality more associated with success and happiness than any other. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. N
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('184', 'C:\\Users\\Administrator\\Pictures\\img_155438.png', 'mPuMD', NULL, NULL, 'niG89VGe0a', '449 Bank Street', NULL, '2024-04-24 14:29:05', '2018-01-30 04:11:37', 180.2018, 'Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. How we spend our days is, of course, how we spend our lives. If you wait, all that happens is you get older. Champions keep playing until they get it right. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Sometimes you win, sometimes you learn. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. A query is used to extract data from the database in a readable format according to the user\'s request. Flexible settings enable you to set up a custom key for comparison and synchronization. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Genius is an infinite capacity for taking pains. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. A mans best friends are his ten fingers. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. The first step is as good as half over. The reason why a great man is great is that he resolves to be a great man. Champions keep playing until they get it right. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Creativity is intelligence having fun. If you wait, all that happens is you get older. The reason why a great man is great is that he resolves to be a great man. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Success consists of going from failure to failure without loss of enthusiasm. You will succeed because most people are lazy. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. HTTP Tunneling is a method for connecting to a server that uses t
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('185', '/home/Administrator/Pictures/img_227494.png', 'JYWqk', NULL, NULL, 'PuzSopy6pO', '815 49/50 Strand, Charing Cross', NULL, '2021-09-25 10:25:12', '2008-08-17 18:03:32', 688.7898, 'Typically, it is employed as an encrypted version of Telnet. Anyone who has ever made anything of importance was disciplined. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Anyone who has ever made anything of importance was disciplined. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Typically, it is employed as an encrypted version of Telnet. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. If you wait, all that happens is you get older. In the middle of winter I at last discovered that there was in me an invincible summer. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. I destroy my enemies when I make them my friends. If the plan doesnt work, change the plan, but never the goal. To connect to a database or schema, simply double-click it in the pane. Genius is an infinite capacity for taking pains. The On Startup feature allows you to control what tabs appear when you launch Navicat. In the middle of winter I at last discovered that there was in me an invincible summer. Actually it is just in an idea when feel oneself can achieve and cannot achieve. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Anyone who has ever made anything of importance was disciplined. Typically, it is employed as an encrypted version of Telnet. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. You will succeed because most people are lazy. You will succeed because most people are lazy. Champions keep playing until they get it right. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. The Synchronize to Database function will give you a f
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('186', '/Users/Administrator/Pictures/img_623526.png', 'CWZ5O', NULL, NULL, 'TUqpu5BcBl', '26 Narborough Rd', NULL, '2020-09-19 12:58:38', '2021-06-30 03:42:31', 709.1434, 'I destroy my enemies when I make them my friends. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. The On Startup feature allows you to control what tabs appear when you launch Navicat. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Typically, it is employed as an encrypted version of Telnet. Success consists of going from failure to failure without loss of enthusiasm. It wasnt raining when Noah built the ark. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. If the plan doesnt work, change the plan, but never the goal. Actually it is just in an idea when feel oneself can achieve and cannot achieve. There is no way to happiness. Happiness is the way. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. In the middle of winter I at last discovered that there was in me an invincible summer. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. All journeys have secret destinations of which the traveler is unaware. A mans best friends are his ten fingers. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Difficult circumstances serve as a textbook of life for people. If you wait, all that happens is you get older. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Genius is an infinite capacity for taking pains. Anyone who has ever made anything of importance was disciplined. You must be the change you wish to see in the world. If you wait, all that happens is you get older. It provides strong authentication and secure encrypted communications between two hosts, k
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('187', 'C:\\Users\\Administrator\\Pictures\\img_999740.jpg', '0Dtve', NULL, NULL, 'dSpazQwAa5', '341 Broadway', NULL, '2021-05-01 14:13:01', '2024-01-20 18:17:27', 47.9243, 'There is no way to happiness. Happiness is the way. A man is not old until regrets take the place of dreams. Navicat 15 has added support for the system-wide dark mode. Champions keep playing until they get it right. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. If you wait, all that happens is you get older. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Success consists of going from failure to failure without loss of enthusiasm. All journeys have secret destinations of which the traveler is unaware. If the plan doesnt work, change the plan, but never the goal. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. How we spend our days is, of course, how we spend our lives. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. You must be the change you wish to see in the world. It wasnt raining when Noah built the ark. If opportunity doesnt knock, build a door. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Genius is an infinite capacity for taking pains. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. A comfort zone is a beautiful place, but nothing ever grows there. Anyone who has never made a mistake has never tried anything new. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server.', 'In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. The past has no power over the present moment. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. To get a secure connection, the first t
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('188', '/Users/Administrator/Pictures/img_258066.jpg', 'dPFSc', NULL, NULL, 'LWHhkaQIVN', '2-1-18 Tenjinnomori, Nishinari Ward', NULL, '2020-05-04 22:33:20', '2010-02-08 22:20:39', 680.0773, 'Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. You cannot save people, you can just love them. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. The past has no power over the present moment. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. It wasnt raining when Noah built the ark. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. What you get by achieving your goals is not as important as what you become by achieving your goals. A query is used to extract data from the database in a readable format according to the user\'s request. Creativity is intelligence having fun. Navicat 15 has added support for the system-wide dark mode. You will succeed because most people are lazy. I destroy my enemies when I make them my friends. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. How we spend our days is, of course, how we spend our lives. How we spend our days is, of course, how we spend our lives. Difficult circumstances serve as a textbook of life for people. A man is not old until regrets take the place of dreams. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Sometimes you win, sometimes you learn. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, Post
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('189', 'C:\\Users\\Administrator\\Pictures\\img_395748.png', 'F0F7t', NULL, NULL, 'rXh28Tx18f', '243 Edward Ave, Braunstone Town', NULL, '2021-09-20 13:48:40', '2006-02-22 10:16:38', 31.6020, 'I destroy my enemies when I make them my friends. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. You will succeed because most people are lazy. A query is used to extract data from the database in a readable format according to the user\'s request. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. If it scares you, it might be a good thing to try. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Optimism is the one quality more associated with success and happiness than any other. The On Startup feature allows you to control what tabs appear when you launch Navicat. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. You cannot save people, you can just love them. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat 15 has added support for the system-wide dark mode. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. I destroy my enemies when I make them my friends. Anyone who has never made a mistake has never tried anything new. Remember that failure is an event, not a person. It wasnt raining when Noah built the ark. Sometimes you win, sometimes you learn. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat 15 has added support for the system-wide dark mode. Creativity is intelligence having fun. The reason why a great man is great is that he resolves to be a great man. You will succeed because most people are lazy. You will succeed because most people are lazy. The On Startup feature allows you to control what tabs appear when you launch Navicat. Sometimes you win, sometimes you learn. The On Startup feature allows you to control what tabs appear when you launch Navicat. Typically, it is employed as an encrypted version of Telnet. Anyone who has ever made anything of importance was disciplined. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. The Synchronize to Database function will give you a full picture of all database differences. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. If opportunity doesnt knock, build a door. Navicat Cloud provides a cloud servi
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('19', '/Users/Administrator/Pictures/img_776284.jpg', 'JD1WD', NULL, NULL, 'uF1CdySNSM', '301 West Market Street', NULL, '2021-07-02 11:44:45', '2012-07-30 11:41:31', 436.4049, 'Success consists of going from failure to failure without loss of enthusiasm. There is no way to happiness. Happiness is the way. What you get by achieving your goals is not as important as what you become by achieving your goals. There is no way to happiness. Happiness is the way. Anyone who has ever made anything of importance was disciplined. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. I may not have gone where I intended to go, but I think I have ended up where I needed to be. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Flexible settings enable you to set up a custom key for comparison and synchronization. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Champions keep playing until they get it right. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Success consists of going from failure to failure without loss of enthusiasm. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. All journeys have secret destinations of which the traveler is unaware. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. How we spend our days is, of course, how we spend our lives. The On Startup feature allows you to control what tabs appear when you launch Navicat. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. I may not have gone where I intended to go, but I think I have ended up where I needed to be. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. A mans best friends are his ten fingers. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. If it scares you, it might be a good thing to try. Genius is an infinite capacity for taking pains. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Difficult circumstances serve as a textbook of life for people. The Synchronize to Datab
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('190', 'C:\\Users\\Administrator\\Pictures\\img_170990.png', '0IGqK', NULL, NULL, '3SUvRb48rM', '567 Papworth Rd, Trumpington', NULL, '2024-04-11 19:17:15', '2001-09-25 07:14:27', 899.1847, 'Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. All journeys have secret destinations of which the traveler is unaware. If opportunity doesnt knock, build a door. To connect to a database or schema, simply double-click it in the pane. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Creativity is intelligence having fun. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. A query is used to extract data from the database in a readable format according to the user\'s request. I will greet this day with love in my heart. Genius is an infinite capacity for taking pains. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. There is no way to happiness. Happiness is the way. If you wait, all that happens is you get older. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. It wasnt raining when Noah built the ark. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view.', 'Success consists of going from failure to failure without loss of enthusiasm. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. The past has no power over the present moment. The Synchronize to Database function will give you a full picture of all database differences. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. If you wait, all that happens is you get older. If the plan doesnt work, change the plan, but never the goal. Anyone who has ever made anything of importance was disciplined. Navicat Data Modeler enables you to build high-quality conceptual, log
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('191', '/Users/Administrator/Pictures/img_575173.jpg', 'e7V4F', NULL, NULL, 'hbfDaPNhnk', '221 FuXingMenNei Street, XiCheng District', NULL, '2020-07-24 07:09:03', '2003-03-28 03:24:30', 481.2342, 'The On Startup feature allows you to control what tabs appear when you launch Navicat. Anyone who has ever made anything of importance was disciplined. A comfort zone is a beautiful place, but nothing ever grows there. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. What you get by achieving your goals is not as important as what you become by achieving your goals. To connect to a database or schema, simply double-click it in the pane. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. You must be the change you wish to see in the world. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Creativity is intelligence having fun. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Sometimes you win, sometimes you learn. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. A mans best friends are his ten fingers. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. I will greet this day with love in my heart. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. There is no way to happiness. Happiness is the way. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Anyone who has never made a mistake has never tried anything new. If opportunity doesnt knock, build a door. In the middle of winter I at last discovered that there was in me an invincible summer. Remember that failure is an event, not a person. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('192', '/home/Administrator/Pictures/img_047136.jpg', '0qzJ9', NULL, NULL, 'dM0NWWBHDL', '5-4-1 Kikusui 3 Jo, Shiroishi Ward,', NULL, '2023-09-22 19:21:15', '2020-06-09 10:31:18', 719.6537, 'HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Champions keep playing until they get it right. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Genius is an infinite capacity for taking pains. Success consists of going from failure to failure without loss of enthusiasm. Flexible settings enable you to set up a custom key for comparison and synchronization. Typically, it is employed as an encrypted version of Telnet. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. A man is not old until regrets take the place of dreams. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Typically, it is employed as an encrypted version of Telnet. How we spend our days is, of course, how we spend our lives. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. A mans best friends are his ten fingers. The past has no power over the present moment. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. The reason why a great man is great is that he resolves to be a great man. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. If you wait, all that happens is you get older. What you get by achieving your goals is not as important as what you become by achieving your goals. Champions keep playing until they
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('193', '/home/Administrator/Pictures/img_473362.png', '58AL7', NULL, NULL, 'wMD8FcbJs6', '311 Maddox Street', NULL, '2022-12-07 18:59:10', '2017-07-09 12:03:55', 50.9067, 'It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. There is no way to happiness. Happiness is the way. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. To connect to a database or schema, simply double-click it in the pane. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Success consists of going from failure to failure without loss of enthusiasm. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. What you get by achieving your goals is not as important as what you become by achieving your goals. The Synchronize to Database function will give you a full picture of all database differences. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. If the plan doesnt work, change the plan, but never the goal. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Genius is an infinite capacity for taking pains. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. The past has no power over the present moment. All journeys have secret destinations of which the traveler is unaware. How we spend our days is, of course, how we spend our lives. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. A man is not old until regrets take the place of dreams. The On Startup feature allows you to control what tabs appear when you launch Navicat. You will succeed because most people are lazy. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Secure SHell (SSH) is a program to log in into another comp
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('194', 'C:\\Users\\Administrator\\Pictures\\img_012204.png', 'XVJ7d', NULL, NULL, '3VgWxqB9OU', '774 Park End St', NULL, '2020-12-07 15:43:27', '2007-09-05 18:46:08', 686.3530, 'Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If you wait, all that happens is you get older. You must be the change you wish to see in the world. I will greet this day with love in my heart. Typically, it is employed as an encrypted version of Telnet. It wasnt raining when Noah built the ark. Remember that failure is an event, not a person. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. If it scares you, it might be a good thing to try. All journeys have secret destinations of which the traveler is unaware. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. How we spend our days is, of course, how we spend our lives. Optimism is the one quality more associated with success and happiness than any other. If the plan doesnt work, change the plan, but never the goal. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. The Synchronize to Database function will give you a full picture of all database differences. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. A comfort zone is a beautiful place, but nothing ever grows there. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. I destroy my enemies when I make them my friends. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Success consists of going from failure to failure without loss of enthusiasm. In other words, Navicat provides the ability f
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('195', '/home/Administrator/Pictures/img_494290.png', 'oMdv5', NULL, NULL, 'yRTnVYxif4', '40 Jianxiang Rd, Pudong', NULL, '2024-01-03 13:03:26', '2021-12-03 16:53:49', 943.2973, 'It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. If it scares you, it might be a good thing to try. It wasnt raining when Noah built the ark. What you get by achieving your goals is not as important as what you become by achieving your goals. If it scares you, it might be a good thing to try. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. All journeys have secret destinations of which the traveler is unaware. You cannot save people, you can just love them. Anyone who has ever made anything of importance was disciplined.', 'After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Difficult circumstances serve as a textbook of life for people. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Optimism is the one quality more associated with success and happiness than any other. If the plan doesnt work, change the plan, but never the goal. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. To connect to a database or schema, simply double-click it in the pane. The first step is as good as half over. It wasnt raining when Noah built the ark. Success consists of going from failure to failure without loss of enthusiasm. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. A man is not old until regrets take the place of dreams. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. A comfort zone is a beautiful place, but nothing e
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('196', 'C:\\Users\\Administrator\\Pictures\\img_178937.png', 'XBsfd', NULL, NULL, 'b2JyuQZICY', '878 Bergen St', NULL, '2024-06-24 15:28:50', '2016-07-04 16:01:18', 660.7064, 'Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Remember that failure is an event, not a person. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. A comfort zone is a beautiful place, but nothing ever grows there. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. You must be the change you wish to see in the world. Remember that failure is an event, not a person. The past has no power over the present moment. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. If opportunity doesnt knock, build a door. You cannot save people, you can just love them. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Optimism is the one quality more associated with success and happiness than any other. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. There is no way to happiness. Happiness is the way. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. The On Startup feature allows you to control what tabs appear when you launch Navicat. All journeys have secret destinations of which the traveler is unaware. Champions keep playing until they get it right. A man is not old until regrets take the place of dreams. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The past has no power over the present moment. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. All journeys have secret destinations of which the traveler is unaware. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Sometimes you win, sometimes you learn. A comfort zone is a beautiful place, but nothing ever grows there. Genius is an infinite capacity for taking pains. You cannot save people, you can just love them. There is no way to happiness. Happiness is the way. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. You can select any connections, objects or projects,
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('197', '/Users/Administrator/Pictures/img_901446.png', 'tyRB8', NULL, NULL, 'Oo3zMMKYYl', '1-5-18, Higashi-Shimbashi, Minato-ku', NULL, '2021-07-25 04:09:27', '2024-10-09 10:20:29', 641.7686, 'To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Optimism is the one quality more associated with success and happiness than any other. It wasnt raining when Noah built the ark. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. In the middle of winter I at last discovered that there was in me an invincible summer. Optimism is the one quality more associated with success and happiness than any other. How we spend our days is, of course, how we spend our lives. The On Startup feature allows you to control what tabs appear when you launch Navicat. Genius is an infinite capacity for taking pains. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Success consists of going from failure to failure without loss of enthusiasm. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. You will succeed because most people are lazy. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The On Startup feature allows you to control what tabs appear when you launch Navicat. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview.', 'It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. The On Startup feature allows you to control what tabs appear when you launch Navicat. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('198', '/Users/Administrator/Pictures/img_835779.png', '98LpC', NULL, NULL, 'IqvLlcfC84', '839 Maddox Street', NULL, '2022-11-26 07:20:03', '2019-12-17 03:05:38', 714.5393, 'Actually it is just in an idea when feel oneself can achieve and cannot achieve. A query is used to extract data from the database in a readable format according to the user\'s request. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Success consists of going from failure to failure without loss of enthusiasm. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. A query is used to extract data from the database in a readable format according to the user\'s request. I destroy my enemies when I make them my friends. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. The Synchronize to Database function will give you a full picture of all database differences. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. A man is not old until regrets take the place of dreams. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Sometimes you win, sometimes you learn. You must be the change you wish to see in the world. Navicat 15 has added support for the system-wide dark mode. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Success consists of going from failure to failure without loss of enthusiasm. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Flexible settings enable you to set up a custom key for comparison and synchronization. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. A man is not old until regrets take the place of dreams. A mans best friends are his ten fingers. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. In the Object
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('199', '/Users/Administrator/Pictures/img_029219.png', 'WMVx8', NULL, NULL, '56T61kwX4j', '5-2-15 Kikusui 3 Jo, Shiroishi Ward', NULL, '2021-03-05 03:21:35', '2018-08-18 09:01:59', 670.7281, 'Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Success consists of going from failure to failure without loss of enthusiasm. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It wasnt raining when Noah built the ark. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. It wasnt raining when Noah built the ark. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. The Synchronize to Database function will give you a full picture of all database differences. You will succeed because most people are lazy. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. The first step is as good as half over. Success consists of going from failure to failure without loss of enthusiasm. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus qu
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('2', '/home/Administrator/Pictures/img_876094.png', 'XDRQx', NULL, NULL, 'jeL84GVNtE', '231 Flatbush Ave', NULL, '2022-07-08 02:51:55', '2019-09-03 13:37:44', 969.2290, 'Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Optimism is the one quality more associated with success and happiness than any other. The Synchronize to Database function will give you a full picture of all database differences. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. You will succeed because most people are lazy. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. What you get by achieving your goals is not as important as what you become by achieving your goals. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. If you wait, all that happens is you get older. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The first step is as good as half over. The first step is as good as half over. Champions keep playing until they get it right. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. The first step is as good as half over. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. If opportunity doesnt knock, build a door. Flexible settings enable you to set up a custom key for comparison and synchronization. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. A man is not old until regrets take the place of dreams. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('20', 'C:\\Users\\Administrator\\Pictures\\img_967730.png', 'rkdyd', NULL, NULL, '5ytCKA6csx', '291 Lower Temple Street', NULL, '2023-10-30 22:22:18', '2021-11-17 19:53:26', 256.5348, 'If you wait, all that happens is you get older. Remember that failure is an event, not a person. How we spend our days is, of course, how we spend our lives. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information.', 'To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. You must be the change you wish to see in the world. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. All journeys have secret destinations of which the traveler is unaware. Creativity is intelligence having fun. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. The Synchronize to Database function will give you a full picture of all database differences. You must be the change you wish to see in the world. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. All journeys have secret destinations of which the traveler is unaware. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. I destroy my enemies when I make them my friends. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Genius is an infinite capacity for taking pains. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. There is no way to happiness. Happiness is the way. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Sometimes you win, sometimes you learn. Flexible settings enable you to set up a custom key for comparison and synchronization. In
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('200', 'C:\\Users\\Administrator\\Pictures\\img_087151.jpg', 'yRhhh', NULL, NULL, '0lKufplZ5l', '509 Jianxiang Rd, Pudong', NULL, '2022-03-27 18:37:04', '2021-09-08 13:17:13', 848.5923, 'Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The reason why a great man is great is that he resolves to be a great man. Typically, it is employed as an encrypted version of Telnet. Difficult circumstances serve as a textbook of life for people. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Remember that failure is an event, not a person. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Creativity is intelligence having fun. There is no way to happiness. Happiness is the way. It wasnt raining when Noah built the ark. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Champions keep playing until they get it right. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. The Synchronize to Database function will give you a full picture of all database differences. If the plan doesnt work, change the plan, but never the goal. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat 15 has added support for the system-wide dark mode. A mans best friends are his ten fingers. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Sometimes you win, sometimes you learn. You will succeed because most people are lazy. All journey
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('21', '/home/Administrator/Pictures/img_938493.png', 'sW7l3', NULL, NULL, 'zEuXXHTHVK', '512 Collier Road', NULL, '2023-01-16 21:57:24', '2014-08-30 03:57:06', 352.2536, 'If opportunity doesnt knock, build a door. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. I will greet this day with love in my heart. All journeys have secret destinations of which the traveler is unaware. If the plan doesnt work, change the plan, but never the goal. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. The On Startup feature allows you to control what tabs appear when you launch Navicat. You will succeed because most people are lazy. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Success consists of going from failure to failure without loss of enthusiasm. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Genius is an infinite capacity for taking pains. Success consists of going from failure to failure without loss of enthusiasm. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Sometimes you win, sometimes you learn. Anyone who has never made a mistake has never tried anything new. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Creativity is intelligence having fun. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. You must be the change you wish to see in the world. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Actually it is just in an idea when feel oneself can achieve and cannot achieve. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. A man is not old until regrets take the place of dreams. Navicat Cloud could not connect and access your databases. By which i
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('22', '/Users/Administrator/Pictures/img_362891.png', 'pdKRi', NULL, NULL, 'veTYf6fymv', '202 Binchuan Rd, Minhang District', NULL, '2022-07-23 21:30:39', '2010-08-30 11:45:28', 112.6764, 'The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It wasnt raining when Noah built the ark. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP.', 'In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. A man is not old until regrets take the place of dreams. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Remember that failure is an event, not a person. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Flexible settings enable you to set up a custom key for comparison and synchronization. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat 15 has added support for the system-wide dark mode. In the Objects tab, you can use the List List, Detail
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('23', '/home/Administrator/Pictures/img_542003.png', 'WeeKo', NULL, NULL, 'YbDSiQnCja', '73 Cyril St, Braunstone Town', NULL, '2022-05-10 19:41:31', '2008-01-10 14:22:01', 442.9899, 'Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Success consists of going from failure to failure without loss of enthusiasm. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat 15 has added support for the system-wide dark mode. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. How we spend our days is, of course, how we spend our lives. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Difficult circumstances serve as a textbook of life for people. There is no way to happiness. Happiness is the way. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. The reason why a great man is great is that he resolves to be a great man. The On Startup feature allows you to control what tabs appear when you launch Navicat. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Optimism is the one quality more associated with success and happiness than any other. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. The Synchronize to Database function will give you a full picture of all database differences. The On Startup feature allows you to control what tabs appear when you launch Navicat. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. There is no way to happiness. Happiness is the way. How we spend our days is, of course, how we spend our lives. There is no way to happiness. Happiness is the way. It wasnt raining when Noah built the ark. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. A mans best friends are his ten fingers. Flexible settings enable you to set up a custom key for comparison and synchronization. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Monitored servers include MySQL, MariaDB and SQL Server, and compatible wi
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('24', '/home/Administrator/Pictures/img_837692.png', 'offDv', NULL, NULL, '23bA3ohmv6', '983 Whitehouse Lane, Huntingdon Rd', NULL, '2023-08-24 14:41:46', '2005-02-24 19:37:14', 255.5603, 'What you get by achieving your goals is not as important as what you become by achieving your goals. There is no way to happiness. Happiness is the way. Typically, it is employed as an encrypted version of Telnet. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Anyone who has never made a mistake has never tried anything new. A mans best friends are his ten fingers. If you wait, all that happens is you get older. You must be the change you wish to see in the world. I may not have gone where I intended to go, but I think I have ended up where I needed to be. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Flexible settings enable you to set up a custom key for comparison and synchronization. Sometimes you win, sometimes you learn. A query is used to extract data from the database in a readable format according to the user\'s request. If it scares you, it might be a good thing to try. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The first step is as good as half over. In the middle of winter I at last discovered that there was in me an invincible summer. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. The Synchronize to Database function will give you a full picture of all database differences. A query is used to extract data from the database in a readable format according to the user\'s request. To connect to a database or schema, simply double-click it in the pane. The reason why a great man is great is that he resolves to be a great man. You must be the change you wish to see in the world. Optimism is the one quality more associated with success and happiness than any other. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. You must be the change you wish to see in the world. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Flexible settings enable you to set up a custom key for comparison and synchronization. The first step is as good as half over. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. A man is not old until regrets take the place of dreams. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. If it scares you, it might be a good thing to try. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making da
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('25', '/home/Administrator/Pictures/img_908875.jpg', 'T0dq1', NULL, NULL, 'pWwlaDZlPA', '750 Diplomacy Drive', NULL, '2022-08-30 12:19:44', '2008-12-08 00:54:41', 465.8832, 'Success consists of going from failure to failure without loss of enthusiasm. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. To connect to a database or schema, simply double-click it in the pane. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Remember that failure is an event, not a person. Typically, it is employed as an encrypted version of Telnet. Sometimes you win, sometimes you learn. The On Startup feature allows you to control what tabs appear when you launch Navicat. Optimism is the one quality more associated with success and happiness than any other. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. All journeys have secret destinations of which the traveler is unaware. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The On Startup feature allows you to control what tabs appear when you launch Navicat. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The On Startup feature allows you to control what tabs appear when you launch Navicat. I will greet this day with love in my heart. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat provides a wide range advanced features, such as compelling c
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('26', '/home/Administrator/Pictures/img_210364.png', '5pdDX', NULL, NULL, 'necoIbD6nY', '301 Edward Ave, Braunstone Town', NULL, '2022-04-03 17:47:00', '2010-08-05 20:20:00', 793.6031, 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. A mans best friends are his ten fingers. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. If it scares you, it might be a good thing to try. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. How we spend our days is, of course, how we spend our lives. If you wait, all that happens is you get older. If opportunity doesnt knock, build a door. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. It wasnt raining when Noah built the ark. To connect to a database or schema, simply double-click it in the pane. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. All journeys have secret destinations of which the traveler is unaware. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. A query is used to extract data from the database in a readable format according to the user\'s request. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. SSH serves to prevent such vulnerabilities and allows you
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('27', 'C:\\Users\\Administrator\\Pictures\\img_621248.png', 'qy6jH', NULL, NULL, 'xXyQqdi5sL', 'No. 677, Shuangqing Rd, Chenghua District', NULL, '2020-12-21 05:29:05', '2008-12-12 11:27:59', 814.8714, 'SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. I may not have gone where I intended to go, but I think I have ended up where I needed to be. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Typically, it is employed as an encrypted version of Telnet. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Anyone who has never made a mistake has never tried anything new. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. I will greet this day with love in my heart. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The first step is as good as half over. The past has no power over the present moment. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The On Startup feature allows you to control what tabs appear when you launch Navicat. A man is not old until regrets take the place of dreams. Champions keep playing until they get it right. I will greet this day with love in my heart. The On Startup feature allows you to control what tabs appear when you launch Navicat. In the middle of winter I at last discovered that there was in me an invincible summer. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. You will succeed because most people are lazy. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. The first step is as good as half over. If opportunity doesnt knock, build a door. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('28', '/Users/Administrator/Pictures/img_228525.png', 'PfDos', NULL, NULL, 'emW69ec6ag', '616 Edward Ave, Braunstone Town', NULL, '2023-01-02 10:33:58', '2023-10-02 03:11:04', 800.4336, 'Optimism is the one quality more associated with success and happiness than any other. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. The first step is as good as half over. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. It wasnt raining when Noah built the ark. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. You will succeed because most people are lazy. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Sometimes you win, sometimes you learn. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools.', 'What you get by achieving your goals is not as important as what you become by achieving your goals. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. All journeys have secret destinations of which the traveler is unaware. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. If it scares you, it might be a good thing to try. Champions keep playing until they get it right. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. I will greet this day with love in my heart. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. The Synchronize to Database function will give you a full picture of all database differences. The Synchronize to Database function will give you a full picture of all databas
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('29', 'C:\\Users\\Administrator\\Pictures\\img_545900.png', 'tYR8A', NULL, NULL, 'F5XbqZx3uF', '751 Xue Yuan Yi Xiang, Longgang', NULL, '2022-03-30 01:31:50', '2003-03-06 04:59:58', 766.4391, 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Sometimes you win, sometimes you learn. Difficult circumstances serve as a textbook of life for people. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. It wasnt raining when Noah built the ark. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view.', 'Sometimes you win, sometimes you learn. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. If opportunity doesnt knock, build a door. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat 15 has added support for the system-wide dark mode. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. A mans best friends are his ten fingers. How we spend our days is, of course, how we spend our lives. Anyone who has never made a mistake has never tried anything new. There is no way to happiness. Happiness is the way. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. If opportunity doesnt knock, build a door. You must be the change you wish to see in the world. Difficult circumstances serve as a textbook of life for people. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. A man is not old until regrets take the place of dreams. Navicat Monitor can be installed on any local computer or virtual machine and does not require any softwar
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('3', 'C:\\Users\\Administrator\\Pictures\\img_832911.jpg', 'CXALZ', NULL, NULL, 'KHVmJbpzu8', '3-9-17 Gakuenminami', NULL, '2023-11-05 01:45:55', '2021-11-21 18:07:30', 270.3540, 'Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Anyone who has never made a mistake has never tried anything new. Sometimes you win, sometimes you learn. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. A mans best friends are his ten fingers. A man is not old until regrets take the place of dreams. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat 15 has added support for the system-wide dark mode. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats.', 'Actually it is just in an idea when feel oneself can achieve and cannot achieve. Anyone who has never made a mistake has never tried anything new. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. It wasnt raining when Noah built the ark. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. I will greet this day with love in my heart. Typically, it is employed as an encrypted version of Telnet. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Anyone who has never made a mistake has never tried anything new. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Navicat 15 has added support for the system-wide dark mode. How we spend our days is, of course, how we spend our lives. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Anyone who has never made a mistake has never tried anything n
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('30', '/home/Administrator/Pictures/img_907535.png', 'PCMLI', NULL, NULL, '2SkmMDhISk', '53 2nd Zhongshan Road, Yuexiu District', NULL, '2021-08-11 19:10:59', '2016-05-01 01:23:31', 108.6446, 'The reason why a great man is great is that he resolves to be a great man. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Creativity is intelligence having fun. Optimism is the one quality more associated with success and happiness than any other. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Difficult circumstances serve as a textbook of life for people. If it scares you, it might be a good thing to try. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. If the plan doesnt work, change the plan, but never the goal. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat 15 has added support for the system-wide dark mode. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The Synchronize to Database function will give you a full picture of all database differences. To connect to a database or schema, simply double-click it in the pane. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Anyone who has ever made anything of importance was disciplined. In the middle of winter I at last discovered that there was in me an invincible summer. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Typically, it is employed as an encrypted version of Telnet. The first step is as good as half over. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH)
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('31', '/Users/Administrator/Pictures/img_016312.jpg', 'KaAH7', NULL, NULL, '5udliflz4c', '129 Wall Street', NULL, '2021-03-29 15:55:51', '2000-10-08 01:29:18', 660.5157, 'If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. I will greet this day with love in my heart. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Remember that failure is an event, not a person. Champions keep playing until they get it right. A man is not old until regrets take the place of dreams. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Remember that failure is an event, not a person. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. What you get by achieving your goals is not as important as what you become by achieving your goals. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. How we spend our days is, of course, how we spend our lives. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. There is no way to happiness. Happiness is the way. A man is not old until regrets take the place of dreams. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Sometimes you win, sometimes you learn. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. The first step is as good as half over. I will greet this day with love in my heart. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Creativity is intelligence having fun. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. You cannot save people, you can just love them. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Export Wizard al
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('32', '/Users/Administrator/Pictures/img_450288.png', '4amp4', NULL, NULL, 'SnpcaNm8qG', '1-7-6 Saidaiji Akodacho', NULL, '2021-01-01 19:56:37', '2003-06-18 20:50:02', 707.2930, 'Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Typically, it is employed as an encrypted version of Telnet. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. I will greet this day with love in my heart. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The first step is as good as half over. Anyone who has never made a mistake has never tried anything new. The reason why a great man is great is that he resolves to be a great man. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. The reason why a great man is great is that he resolves to be a great man. Optimism is the one quality more associated with success and happiness than any other. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. A mans best friends are his ten fingers. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. All journeys have secret destinations of which the traveler is unaware. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Success consists of going from failure to failure without loss of enthusiasm. You cannot save people, you can just love them. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Remember that failure is an event, not a person. There is no way to happiness. Happiness is the way. A comfort zone is a beautiful place, but nothing ever grows there. Navicat authorizes you to make connection
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('33', 'C:\\Users\\Administrator\\Pictures\\img_673903.png', '0UjkV', NULL, NULL, 'P7gMBpLA9e', '790 2nd Zhongshan Road, Yuexiu District', NULL, '2022-05-29 19:39:25', '2019-01-11 02:11:44', 255.0770, 'Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. To connect to a database or schema, simply double-click it in the pane. All journeys have secret destinations of which the traveler is unaware. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. How we spend our days is, of course, how we spend our lives. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. All journeys have secret destinations of which the traveler is unaware. Flexible settings enable you to set up a custom key for comparison and synchronization. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. To connect to a database or schema, simply double-click it in the pane. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Genius is an infinite capacity for taking pains. The first step is as good as half over. Difficult circumstances serve as a textbook of life for people. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. The reason why a great man is great is that he resolves to be a great man. Sometimes you win, sometimes you learn. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Genius is an infinite capacity for taking pains. Navicat
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('34', '/Users/Administrator/Pictures/img_735757.png', 'IK9Qw', NULL, NULL, 'Mjw10RvD6i', '200 Narborough Rd', NULL, '2022-05-28 12:40:19', '2023-08-30 02:33:16', 330.9051, 'Genius is an infinite capacity for taking pains. Actually it is just in an idea when feel oneself can achieve and cannot achieve. If opportunity doesnt knock, build a door. It wasnt raining when Noah built the ark. If you wait, all that happens is you get older. A comfort zone is a beautiful place, but nothing ever grows there. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The reason why a great man is great is that he resolves to be a great man. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Flexible settings enable you to set up a custom key for comparison and synchronization. You must be the change you wish to see in the world. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If it scares you, it might be a good thing to try. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Actually it is just in an idea when feel oneself can achieve and cannot achieve. The Synchronize to Database function will give you a full picture of all database differences. Anyone who has ever made anything of importance was disciplined. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Sometimes you win, sometimes you learn. If opportunity doesnt knock, build a door. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. If it scares you, it might be a good thing to try. A comfort zone is a beautiful place, but nothing ever grows there. Anyone who has ever made anything of importance was disciplined. What you get by achieving your goals is not as important as what you become by achieving your goals. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Optimism is the one quality more associated with success and happiness than any other. A query is used to extract data from the database in a readable format according to the user\'s request. Optimism is the one quality more associated with success and happiness than any other. If it scares you, it might be a good thing to try. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. To connect to a database or schema, simply double-click it in the pane. You can select any connections, objects or
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('35', '/home/Administrator/Pictures/img_494684.png', '4q1Z0', NULL, NULL, 'K9N1knn3mU', '3-15-12 Ginza, Chuo-ku', NULL, '2021-02-05 07:58:05', '2017-04-23 04:26:17', 972.1475, 'In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. If opportunity doesnt knock, build a door. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Actually it is just in an idea when feel oneself can achieve and cannot achieve. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. What you get by achieving your goals is not as important as what you become by achieving your goals. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Anyone who has never made a mistake has never tried anything new. The On Startup feature allows you to control what tabs appear when you launch Navicat. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Typically, it is employed as an encrypted version of Telnet. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat 15 has added support for the system-wide dark mode. Creativity is intelligence having fun. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Anyone who has never made a mistake has never tried anything new. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries.', 'Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. In the Objects tab, you can use the List List, Detail Detail and ER Diag
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('36', 'C:\\Users\\Administrator\\Pictures\\img_586617.jpg', 'AcTai', NULL, NULL, 'xLBZ6lmIVv', '683 39 William IV St, Charing Cross', NULL, '2022-12-26 13:29:40', '2001-11-09 14:34:56', 884.8498, 'Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Champions keep playing until they get it right. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. I will greet this day with love in my heart. Typically, it is employed as an encrypted version of Telnet. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Champions keep playing until they get it right. I will greet this day with love in my heart. In the middle of winter I at last discovered that there was in me an invincible summer. To connect to a database or schema, simply double-click it in the pane. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. You will succeed because most people are lazy. A man is not old until regrets take the place of dreams. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. The past has no power over the present moment. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. What you get by achieving your goals is not as important as what you become by achieving your goals.', 'The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Creativity is intelligence having fun. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Genius is an infinite capacity for taking pains. You cannot save people, you can just love them. You must be the change you wish to see in the world. Difficult circumstances serve as a textbook of life for people. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat is a multi-connections Database Administration tool allowing you to co
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('37', 'C:\\Users\\Administrator\\Pictures\\img_656790.jpg', 'xgH5x', NULL, NULL, 'pjIeDpHFPu', '3-9-18 Gakuenminami', NULL, '2022-06-05 22:27:22', '2013-02-12 18:25:45', 213.7234, 'Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Creativity is intelligence having fun. The On Startup feature allows you to control what tabs appear when you launch Navicat. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view.', 'SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. A mans best friends are his ten fingers. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Champions keep playing until they get it right. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. You will succeed because most people are lazy. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. I destroy my enemies when I make them my friends. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Flexible settings enable you to set up a custom key for comparison and synchronization. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat 15 has added support for the system-wide dark mode. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Optimism is the one quality more associated with success and happiness than any other. Such sessions are also susceptible to session hijacking, where a malicious user takes over your
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('38', 'C:\\Users\\Administrator\\Pictures\\img_755986.jpg', 'RGaP5', NULL, NULL, 'FrNOkp8Eo0', '672 Sackville St', NULL, '2023-11-22 05:26:33', '2000-11-21 08:51:06', 14.2224, 'Champions keep playing until they get it right. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. The reason why a great man is great is that he resolves to be a great man. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Remember that failure is an event, not a person. Anyone who has never made a mistake has never tried anything new. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Difficult circumstances serve as a textbook of life for people. If it scares you, it might be a good thing to try. If you wait, all that happens is you get older. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. A mans best friends are his ten fingers. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. There is no way to happiness. Happiness is the way. Creativity is intelligence having fun. A man is not old until regrets take the place of dreams. Typically, it is employed as an encrypted version of Telnet. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. I will greet this day with love in my heart. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. You must be the change you wish to see in the world. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. How we spend our days is, of course, how we spend our lives. The reason why a great man is great is that he resolves to be a great man. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The first step is as good as half over. You must be the change you wish to see in the world. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. All journeys have secret destinations of which the traveler is unaware. Flexible settings enable you to set
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('39', '/Users/Administrator/Pictures/img_661490.png', 'ZaZvn', NULL, NULL, 'BxrD60lCMX', '899 Pollen Street', NULL, '2020-06-22 18:05:27', '2024-05-10 13:09:41', 745.3588, 'HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. If you wait, all that happens is you get older. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Anyone who has never made a mistake has never tried anything new. Navicat 15 has added support for the system-wide dark mode. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Optimism is the one quality more associated with success and happiness than any other. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. If opportunity doesnt knock, build a door. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The reason why a great man is great is that he resolves to be a great man. Actually it is just in an idea when feel oneself can achieve and cannot achieve. I may not have gone where I intended to go, but I think I have ended up where I needed to be. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. The first step is as good as half over. Typically, it is employed as an encrypted version of Telnet. A query is used to extract data from the database in a readable format according to the user\'s request. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. You will succeed because most people are lazy. If you wait, all that happens is you get older. I destroy my enemies when I make them my friends. Flexible settings enable you to set up a custom key for comparison and synchronization. A man is not old until regrets take the place of dreams. To connect to a database or schema, simply double-click it in the pane. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Anyone who has ever made anything of importance was disciplined. To connect to a database or schema, simply double-click it in the pane. Creativ
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('4', '/home/Administrator/Pictures/img_171993.jpg', 'DbxYU', NULL, NULL, '6ubtsCrnsz', '213 Lefeng 6th Rd', NULL, '2020-09-02 15:40:39', '2006-02-25 14:12:34', 230.7145, 'Creativity is intelligence having fun. I destroy my enemies when I make them my friends. Champions keep playing until they get it right. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. A mans best friends are his ten fingers. A comfort zone is a beautiful place, but nothing ever grows there. Success consists of going from failure to failure without loss of enthusiasm. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Sometimes you win, sometimes you learn. If it scares you, it might be a good thing to try. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. If opportunity doesnt knock, build a door. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. The past has no power over the present moment. You will succeed because most people are lazy. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Champions keep playing until they get it right. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Remember that failure is an event, not a person. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. The reason why a great man is great is that he resolves to be a great man. Navicat 15 has added support for the system-wide dark mode. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. There is no way to happiness. Happiness is the way. Champions keep playing until they get it right. To connect to a database or schema, simply double-click it in the pane. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. What you get by achieving your goals is not as important as what you become by achieving your goals. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To suc
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('40', '/home/Administrator/Pictures/img_200755.jpg', '2zEIu', NULL, NULL, 'AodKEoeKEU', '4-9-13 Kamihigashi, Hirano Ward', NULL, '2021-02-03 08:40:51', '2015-08-25 05:14:04', 458.7479, 'Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Remember that failure is an event, not a person. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. How we spend our days is, of course, how we spend our lives. Actually it is just in an idea when feel oneself can achieve and cannot achieve. To connect to a database or schema, simply double-click it in the pane. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Success consists of going from failure to failure without loss of enthusiasm. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Typically, it is employed as an encrypted version of Telnet. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. I will greet this day with love in my heart. If you wait, all that happens is you get older. Anyone who has never made a mistake has never tried anything new. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Flexible settings enable you to set up a custom key for comparison and synchronization. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. What you get by achieving your goals is not as important as what you become by achieving your goals. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. If opportunity doesnt knock, build a door. The reason why a great man is great is that he resolves to be a great man. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences.', 'In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. You will succeed because most people are lazy. It is used while your ISPs do not
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('41', 'C:\\Users\\Administrator\\Pictures\\img_289300.jpg', 'h4vPs', NULL, NULL, 'LzezBzNYSO', '346 2nd Zhongshan Road, Yuexiu District', NULL, '2023-09-07 23:13:58', '2008-01-06 23:35:09', 288.8202, 'Sometimes you win, sometimes you learn. You cannot save people, you can just love them. Anyone who has never made a mistake has never tried anything new.', 'Actually it is just in an idea when feel oneself can achieve and cannot achieve. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. I may not have gone where I intended to go, but I think I have ended up where I needed to be. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Champions keep playing until they get it right. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It wasnt raining when Noah built the ark. Flexible settings enable you to set up a custom key for comparison and synchronization. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. A man is not old until regrets take the place of dreams. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. There is no way to happiness. Happiness is the way. Actually it is just in an idea when feel oneself can achieve and cannot achieve. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. A mans best friends are his ten fingers. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. There is no way to happiness. Happiness is the way. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. It wasnt raining when Noah built the ark. It is used while your ISPs do not allow direct connections, but allows establ
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('42', 'C:\\Users\\Administrator\\Pictures\\img_618921.png', 'BmpBH', NULL, NULL, '3IeElfJJ0w', '531 Park End St', NULL, '2020-08-08 10:36:48', '2003-11-06 13:12:39', 402.8191, 'The reason why a great man is great is that he resolves to be a great man. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. The On Startup feature allows you to control what tabs appear when you launch Navicat. The Synchronize to Database function will give you a full picture of all database differences. Anyone who has ever made anything of importance was disciplined. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. How we spend our days is, of course, how we spend our lives. Navicat 15 has added support for the system-wide dark mode. Genius is an infinite capacity for taking pains. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. The Synchronize to Database function will give you a full picture of all database differences. Creativity is intelligence having fun. You cannot save people, you can just love them. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. There is no way to happiness. Happiness is the way. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. You will succeed because most people are lazy. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. If the plan doesnt work, change the plan, but never the goal. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('43', '/Users/Administrator/Pictures/img_409689.png', 'khSSc', NULL, NULL, 'JqCw0TxWnr', '190 Whitehouse Lane, Huntingdon Rd', NULL, '2022-08-29 18:23:59', '2023-07-28 14:40:43', 560.7856, 'If it scares you, it might be a good thing to try. What you get by achieving your goals is not as important as what you become by achieving your goals. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Optimism is the one quality more associated with success and happiness than any other. The reason why a great man is great is that he resolves to be a great man. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Navicat 15 has added support for the system-wide dark mode. Difficult circumstances serve as a textbook of life for people. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Typically, it is employed as an encrypted version of Telnet. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. If you wait, all that happens is you get older. If the plan doesnt work, change the plan, but never the goal. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Sometimes you win, sometimes you learn. Champions keep playing until they get it right. There is no way to happiness. Happiness is the way. If it scares you, it might be a good thing to try. You must be the change you wish to see in the world. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. I will greet this day with love in my heart. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. There is no way to happiness. Happiness is the way. Flexible settings enable you to set up a custom key for comparison and synchronization. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. If the plan doesnt work, change the plan, but never the goal. Optimism is the one quality more associated with success and happiness than any other. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Remember that failure is an event, not a person. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure T
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('44', '/Users/Administrator/Pictures/img_757063.png', 'oQDrt', NULL, NULL, 'xnyAnS3qVG', '150 Elms Rd, Botley', NULL, '2022-03-22 04:37:47', '2001-09-16 08:45:21', 230.9793, 'If you wait, all that happens is you get older. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. A comfort zone is a beautiful place, but nothing ever grows there. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. To connect to a database or schema, simply double-click it in the pane. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. The On Startup feature allows you to control what tabs appear when you launch Navicat. You will succeed because most people are lazy. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. If it scares you, it might be a good thing to try. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The past has no power over the present moment. A comfort zone is a beautiful place, but nothing ever grows there. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Remember that failure is an event, not a person. You must be the change you wish to see in the world. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. To connect to a database or schema, simply double-click it in the pane. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. You will succeed because most people are lazy. Success consists of going from failure to failure without loss of enthusiasm. Success consists of going from failure to failure without loss of enthusiasm. A query is used to extract data from the database in a readable format according to the user\'s request. Actually it is just in an idea when feel oneself can achieve and cannot achieve. In the middle of winter I at last discovered that there was in me an invincible summer. You must be the change you wish to see in the world. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('45', '/home/Administrator/Pictures/img_286574.jpg', '1IFjQ', NULL, NULL, '0HvRnjaAWr', '1-7-4 Omido, Higashiosaka', NULL, '2023-05-18 11:43:29', '2011-11-26 05:00:21', 398.9517, 'A mans best friends are his ten fingers. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Remember that failure is an event, not a person. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Anyone who has ever made anything of importance was disciplined. All journeys have secret destinations of which the traveler is unaware. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. All journeys have secret destinations of which the traveler is unaware. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The Synchronize to Database function will give you a full picture of all database differences. If the plan doesnt work, change the plan, but never the goal. You cannot save people, you can just love them. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. You will succeed because most people are lazy. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Difficult circumstances serve as a textbook of life for people. What you get by achieving your goals is not as important as what you become by achieving your goals. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Anyone who has ever made anything of importance was disciplined. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. A mans best friends are his ten fingers. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('46', 'C:\\Users\\Administrator\\Pictures\\img_474557.png', 'wzbal', NULL, NULL, 'OV0R2F5OED', '992 Riverview Road', NULL, '2024-10-19 07:57:31', '2019-10-22 07:23:37', 751.2812, 'Sometimes you win, sometimes you learn. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The first step is as good as half over. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. The past has no power over the present moment. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Anyone who has ever made anything of importance was disciplined. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. A query is used to extract data from the database in a readable format according to the user\'s request. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP.', 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Success consists of going from failure to failure without loss of enthusiasm. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. You cannot save people, you can just love them. If it scares you, it might be a good thing to try. You cannot save people, you can just love them. Genius is an infinite capacity for taking pains. Champions keep playing until they get it right. You cannot save people, you can just love them. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information.', NULL, 'Optimism is the one quality more associated with success and happiness than any other. I will greet this day with love in my heart. If you wait, all that happens is you get older. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon A
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('47', 'C:\\Users\\Administrator\\Pictures\\img_697186.png', 'Dnfar', NULL, NULL, 'JmRAmzwbbp', '782 Yueliu Rd, Fangshan District', NULL, '2022-01-31 18:37:23', '2005-05-10 01:11:17', 297.4370, 'You will succeed because most people are lazy. I destroy my enemies when I make them my friends. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. There is no way to happiness. Happiness is the way. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Flexible settings enable you to set up a custom key for comparison and synchronization. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. You must be the change you wish to see in the world. Anyone who has never made a mistake has never tried anything new. A mans best friends are his ten fingers. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. If you wait, all that happens is you get older. What you get by achieving your goals is not as important as what you become by achieving your goals. If the plan doesnt work, change the plan, but never the goal. Champions keep playing until they get it right. What you get by achieving your goals is not as important as what you become by achieving your goals. The Synchronize to Database function will give you a full picture of all database differences. Sometimes you win, sometimes you learn. Typically, it is employed as an encrypted version of Telnet. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat 15 has added support for the system-wide dark mode. Difficult circumstances serve as a textbook of life for people. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. If opportunity doesnt knock, build a door. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections.', 'It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To cl
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('48', 'C:\\Users\\Administrator\\Pictures\\img_702557.png', '4tOga', NULL, NULL, 'QWpqY4wnjw', '79 Jianxiang Rd, Pudong', NULL, '2020-08-26 10:45:12', '2003-07-09 01:01:30', 365.7623, 'Navicat 15 has added support for the system-wide dark mode. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. The Synchronize to Database function will give you a full picture of all database differences. A mans best friends are his ten fingers. The first step is as good as half over. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Navicat 15 has added support for the system-wide dark mode. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. The past has no power over the present moment. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. A mans best friends are his ten fingers. What you get by achieving your goals is not as important as what you become by achieving your goals. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. You must be the change you wish to see in the world. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. In the middle of winter I at last discovered that there was in me an invincible summer. You cannot save people, you can just love them. Champions keep playing until they get it right. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. The first step is as good as half over. If the plan doesnt work, change the plan, but never the goal. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('49', 'C:\\Users\\Administrator\\Pictures\\img_481180.jpg', 'CCSHR', NULL, NULL, 'X1tt7S6Iyu', '267 Fern Street', NULL, '2021-05-05 16:13:53', '2005-08-16 13:03:00', 55.3427, 'The On Startup feature allows you to control what tabs appear when you launch Navicat. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Creativity is intelligence having fun. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Champions keep playing until they get it right. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. What you get by achieving your goals is not as important as what you become by achieving your goals. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat 15 has added support for the system-wide dark mode. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Creativity is intelligence having fun. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. It wasnt raining when Noah built the ark. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. In other
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('5', '/Users/Administrator/Pictures/img_506506.png', 'XwcIe', NULL, NULL, 'yislpRti6Z', '709 Jiangnan West Road, Haizhu District', NULL, '2024-08-27 18:45:46', '2019-07-05 04:57:54', 533.1237, 'Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. If it scares you, it might be a good thing to try. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. If opportunity doesnt knock, build a door. You will succeed because most people are lazy. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. If the plan doesnt work, change the plan, but never the goal. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Typically, it is employed as an encrypted version of Telnet. It wasnt raining when Noah built the ark. Difficult circumstances serve as a textbook of life for people. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. There is no way to happiness. Happiness is the way. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. The reason why a great man is great is that he resolves to be a great man. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. A mans best friends are his ten fingers. A comfort zone is a beautiful place, but nothing ever grows there. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. All journeys have secret destinations of which the traveler is unaware. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It wasnt raining when Noah built the ark. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. It wasnt raining when Noah built the ark. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navica
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('50', '/Users/Administrator/Pictures/img_898049.jpg', 'tZNob', NULL, NULL, 'lsIJFDFOYW', '13-3-16 Toyohira 3 Jo, Toyohira Ward', NULL, '2021-03-16 22:41:57', '2021-05-17 11:29:52', 99.7309, 'SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. To connect to a database or schema, simply double-click it in the pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. If the plan doesnt work, change the plan, but never the goal. The reason why a great man is great is that he resolves to be a great man. Anyone who has never made a mistake has never tried anything new. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. How we spend our days is, of course, how we spend our lives. The past has no power over the present moment. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The past has no power over the present moment. If the plan doesnt work, change the plan, but never the goal. Anyone who has never made a mistake has never tried anything new. Actually it is just in an idea when feel oneself can achieve and cannot achieve. What you get by achieving your goals is not as important as what you become by achieving your goals. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. What you get by achieving your goals is not as important as what you become by achieving your goals. You must be the change you wish to see in the world. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. If opportunity doesnt knock, build a door. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. To start working with your server in Navicat, you should first establish a connection or several connections usin
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('51', '/Users/Administrator/Pictures/img_755214.jpg', 'Q7PVY', NULL, NULL, 'gFv6dakDL4', '298 Cyril St, Braunstone Town', NULL, '2023-06-27 06:55:41', '2004-11-19 09:53:08', 850.6088, 'The On Startup feature allows you to control what tabs appear when you launch Navicat. Sometimes you win, sometimes you learn. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily.', 'Success consists of going from failure to failure without loss of enthusiasm. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud.', NULL, 'If you wait, all that happens is you get older. To connect to a database or schema, simply double-click it in the pane. Creativity is intelligence having fun. If the plan doesnt work, change the plan, but never the goal. Success consists of going from failure to failure without loss of enthusiasm. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Difficult circumstances serve as a textbook of life for people. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Difficult circumstances serve as a textbook of life for people. It wasnt raining when Noah built the ark. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Actually it is just in an idea when feel oneself can achieve and cannot achieve. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. You must be the change you wish to see in the world. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. To connect to a database or schema, simply double-click it in the pane. Anyone who has never made a mistake has never tried anything new. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Flexible settings enable you to set up a custom key for comparison and synchronization. Genius is an infinite capacity for taking pains. All journeys have secret destinations of which the traveler is unaware. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. I destroy my enemies when I make them my friends. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Champions keep playing until they get it right. I will greet this day with love in my heart. Aft
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('52', '/Users/Administrator/Pictures/img_280614.png', 'gpE9I', NULL, NULL, 'vvnhHzG88D', '276 49/50 Strand, Charing Cross', NULL, '2023-06-10 04:42:36', '2023-05-14 15:30:00', 674.7006, 'Success consists of going from failure to failure without loss of enthusiasm. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. You will succeed because most people are lazy. You will succeed because most people are lazy. It wasnt raining when Noah built the ark. I destroy my enemies when I make them my friends. A man is not old until regrets take the place of dreams. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. If opportunity doesnt knock, build a door. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Remember that failure is an event, not a person. You will succeed because most people are lazy. Sometimes you win, sometimes you learn. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. All journeys have secret destinations of which the traveler is unaware. You cannot save people, you can just love them. Anyone who has ever made anything of importance was disciplined. If opportunity doesnt knock, build a door. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. How we spend our days is, of course, how we spend our lives. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. If the plan doesnt work, change the plan, but never the goal. Anyone who has ever made anything of importance was disciplined. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowi
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('53', '/home/Administrator/Pictures/img_747684.jpg', 'Jss0G', NULL, NULL, 'hu09xGd1Ih', '994 Tremont Road', NULL, '2021-12-24 14:27:49', '2003-02-18 09:51:40', 2.3899, 'After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Sometimes you win, sometimes you learn. It wasnt raining when Noah built the ark. Sometimes you win, sometimes you learn. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. There is no way to happiness. Happiness is the way. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. A mans best friends are his ten fingers. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. How we spend our days is, of course, how we spend our lives. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. In the middle of winter I at last discovered that there was in me an invincible summer. If opportunity doesnt knock, build a door. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. There is no way to happiness. Happiness is the way. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. It collects process metrics such as CPU load, RAM usage, and a variety of other res
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('54', 'C:\\Users\\Administrator\\Pictures\\img_131934.jpg', 'MIvx2', NULL, NULL, 'juWD6s91ke', '4-9-10 Kamihigashi, Hirano Ward', NULL, '2021-09-21 02:25:34', '2022-09-04 17:14:16', 646.7536, 'In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. A mans best friends are his ten fingers. Champions keep playing until they get it right. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. The past has no power over the present moment. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. You will succeed because most people are lazy. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. A query is used to extract data from the database in a readable format according to the user\'s request. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Optimism is the one quality more associated with success and happiness than any other. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. If it scares you, it might be a good thing to try. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Flexible settings enable you to set up a custom key for comparison and synchronization. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy.', 'Monitored servers include MySQL, MariaDB and SQL Serve
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('55', '/Users/Administrator/Pictures/img_617489.png', '4IiEU', NULL, NULL, 'jjXGbEDoD1', '983 New Street', NULL, '2023-10-19 23:01:22', '2024-11-03 19:35:24', 991.8260, 'If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. You will succeed because most people are lazy. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. You must be the change you wish to see in the world. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The reason why a great man is great is that he resolves to be a great man. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. If the plan doesnt work, change the plan, but never the goal. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Actually it is just in an idea when feel oneself can achieve and cannot achieve. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. A comfort zone is a beautiful place, but nothing ever grows there. I destroy my enemies when I make them my friends. The past has no power over the present moment. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. To successfully establis
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('56', '/home/Administrator/Pictures/img_185101.png', 'Z2Ka9', NULL, NULL, 'If9fKmzvIT', '615 East Alley', NULL, '2023-10-23 07:06:56', '2013-03-05 06:55:27', 56.8397, 'To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Champions keep playing until they get it right. The On Startup feature allows you to control what tabs appear when you launch Navicat. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat 15 has added support for the system-wide dark mode. If opportunity doesnt knock, build a door. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane.', 'Champions keep playing until they get it right. The Synchronize to Database function will give you a full picture of all database differences. Sometimes you win, sometimes you learn. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It wasnt raining when Noah built the ark. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Sometimes you win, sometimes you learn. The reason why a great man is great is that he resolves to be a great man. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Secure Sockets Layer(SSL) is a protocol for transmitting pr
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('57', '/Users/Administrator/Pictures/img_322520.png', 'qySRI', NULL, NULL, 'HLKzQPkYDb', '210 Qingshuihe 1st Rd, Luohu District', NULL, '2022-04-27 06:04:47', '2019-04-04 04:39:40', 697.3265, 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. If it scares you, it might be a good thing to try. It wasnt raining when Noah built the ark. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Remember that failure is an event, not a person. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. A query is used to extract data from the database in a readable format according to the user\'s request. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. How we spend our days is, of course, how we spend our lives. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. There is no way to happiness. Happiness is the way. Champions keep playing until they get it right. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. SQL Editor allows you to create a
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('58', 'C:\\Users\\Administrator\\Pictures\\img_278175.jpg', 'xAGie', NULL, NULL, 'nhDBsG4w7K', '86 Stephenson Street', NULL, '2022-06-01 08:45:42', '2011-02-11 07:40:42', 50.4564, 'To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Success consists of going from failure to failure without loss of enthusiasm. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat 15 has added support for the system-wide dark mode. Typically, it is employed as an encrypted version of Telnet. In the middle of winter I at last discovered that there was in me an invincible summer. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Actually it is just in an idea when feel oneself can achieve and cannot achieve. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Difficult circumstances serve as a textbook of life for people. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. Navicat 15 has added support for the system-wide dark mode. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from.', 'A comfort zone is a beautiful place, but nothing ever grows there. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. I will greet this day with love in my heart. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. I will greet this day with love in my heart. How we spend our days is, of course, how we spend our lives. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections.', NULL, 'All journeys have secret destinations of which the traveler is unaware. I may not have gone where I intended to go, but I think I have ended up where I needed to be. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. You cannot save people, you can just love them. All journeys have secret destinations of which the traveler is unaware. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. If the plan doesnt work, change the plan, but never the goal. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated e
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('59', 'C:\\Users\\Administrator\\Pictures\\img_137439.jpg', 'y7Zxx', NULL, NULL, 'zoPSDNgjtT', '138 Canal Street', NULL, '2020-05-09 10:49:55', '2003-08-13 22:36:59', 878.5804, 'Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Creativity is intelligence having fun. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. You will succeed because most people are lazy. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Sometimes you win, sometimes you learn. The On Startup feature allows you to control what tabs appear when you launch Navicat. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Champions keep playing until they get it right. Creativity is intelligence having fun. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. How we spend our days is, of course, how we spend our lives. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat is a multi-connections Database Administration tool allowing you to conne
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('6', '/Users/Administrator/Pictures/img_738599.jpg', 'S4gkQ', NULL, NULL, 'tRbWt8i6Iv', 'No. 767, Shuangqing Rd, Chenghua District', NULL, '2021-06-05 21:18:53', '2018-07-25 23:54:22', 848.3930, 'It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Remember that failure is an event, not a person. Champions keep playing until they get it right. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. If opportunity doesnt knock, build a door. Remember that failure is an event, not a person. What you get by achieving your goals is not as important as what you become by achieving your goals. If the plan doesnt work, change the plan, but never the goal. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. In the middle of winter I at last discovered that there was in me an invincible summer. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Flexible settings enable you to set up a custom key for comparison and synchronization. What you get by achieving your goals is not as important as what you become by achieving your goals. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Genius is an infinite capacity for taking pains. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Remember that failure is an event, not a person. Remember that failure is an event, not a person. The On Startup feature allows you to control what tabs appear when you launch Navicat. Typically, it is employed as an encrypted version of Telnet. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud.', 'A man is not old until regrets take the place of dreams. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. You will succeed because most people are lazy. Sometimes you win, sometimes you learn. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. A comfort zone is a beautiful place, but
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('60', 'C:\\Users\\Administrator\\Pictures\\img_711321.png', 'gToUz', NULL, NULL, 'HeiasTGytP', '1-7-16 Saidaiji Akodacho', NULL, '2024-10-01 12:26:52', '2007-06-28 18:52:47', 337.8468, 'A man is not old until regrets take the place of dreams. How we spend our days is, of course, how we spend our lives. The reason why a great man is great is that he resolves to be a great man. If opportunity doesnt knock, build a door. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. The first step is as good as half over. There is no way to happiness. Happiness is the way. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. I will greet this day with love in my heart. The reason why a great man is great is that he resolves to be a great man. A mans best friends are his ten fingers. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Remember that failure is an event, not a person.', 'It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. If it scares you, it might be a good thing to try. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Typically, it is employed as an encrypted version of Telnet. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Champions keep playing until they get it right. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. To connect to a database or schema, simply double-click it in the pane. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Navicat 15 has added support for the system-wide dark mode. A man is not old until regrets take the place of dreams. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. If opportunity doesnt knock, build a door. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. You must be the change you wish to see in the world. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunne
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('61', '/Users/Administrator/Pictures/img_365933.jpg', '5BvIB', NULL, NULL, 'YM04zi6s4w', '961 W Ring Rd, Buji Town, Longgang', NULL, '2023-04-27 03:47:14', '2016-06-01 06:27:52', 130.0495, 'Success consists of going from failure to failure without loss of enthusiasm. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. The reason why a great man is great is that he resolves to be a great man. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Flexible settings enable you to set up a custom key for comparison and synchronization. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Anyone who has never made a mistake has never tried anything new. You must be the change you wish to see in the world. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. I destroy my enemies when I make them my friends. Sometimes you win, sometimes you learn. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. In the middle of winter I at last discovered that there was in me an invincible summer. The past has no power over the present moment. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. What you get by achieving your goals is not as important as what you become by achieving your goals. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. How we spend our days is, of course, how we spend our lives. Sometimes you win, sometimes you learn. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. If opportunity doesnt knock, build a door. The reason why a great man is great is that he resolves to be a great man. Anyone who has never made a mistake has never tried anything new. Anyone who has never made a mistake has never tried anything new. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting,
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('62', '/Users/Administrator/Pictures/img_063088.png', 'h1eAy', NULL, NULL, 'tEQ9CX4vA5', '4-9-10 Kamihigashi, Hirano Ward', NULL, '2021-02-11 23:17:31', '2016-02-09 10:56:39', 790.3870, 'You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Creativity is intelligence having fun. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. If you wait, all that happens is you get older. You cannot save people, you can just love them. All journeys have secret destinations of which the traveler is unaware. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Genius is an infinite capacity for taking pains. Anyone who has never made a mistake has never tried anything new. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. A query is used to extract data from the database in a readable format according to the user\'s request. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Genius is an infinite capacity for taking pains. Creativity is intelligence having fun. It wasnt raining when Noah built the ark. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. You will succeed because most people are lazy. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. What you get by achieving your goals is not as important as what you become by achieving your goals. It wasnt raining when Noah built the ark. The past has no power over the present moment. It wasnt raining when Noah built the ark. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. If the plan doesnt work, change the plan, but never the goal. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. You must be the change you wish to see in the world. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Typically, it is employed as an encrypted version of Telnet. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('63', 'C:\\Users\\Administrator\\Pictures\\img_006966.png', '29y2v', NULL, NULL, 'jGgyX2gZaZ', '367 Columbia St', NULL, '2020-05-24 21:15:17', '2021-04-12 10:52:00', 909.6793, 'It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. You cannot save people, you can just love them. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. If opportunity doesnt knock, build a door. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Genius is an infinite capacity for taking pains. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Sometimes you win, sometimes you learn. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Flexible settings enable you to set up a custom key for comparison and synchronization. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. How we spend our days is, of course, how we spend our lives. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Flexible settings enable you to set up a custom key for comparison and synchronization. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. If opportunity doesnt knock, build a door. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. The first step is as good as half over. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. You must be the change you wish to see in the world. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat provides a wide range advanced fe
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('64', 'C:\\Users\\Administrator\\Pictures\\img_518706.jpg', '2VU2B', NULL, NULL, 'kXnv2MQfow', '21 East Cooke Road', NULL, '2021-09-09 15:47:19', '2014-02-15 18:49:57', 802.7024, 'To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. A comfort zone is a beautiful place, but nothing ever grows there. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The first step is as good as half over. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. If it scares you, it might be a good thing to try. A man is not old until regrets take the place of dreams. If it scares you, it might be a good thing to try. You cannot save people, you can just love them. Navicat 15 has added support for the system-wide dark mode. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The On Startup feature allows you to control what tabs appear when you launch Navicat. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Champions keep playing until they get it right. You must be the change you wish to see in the world. To connect to a database or schema, simply double-click it in the pane. If it scares you, it might be a good thing to try. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. If you wait, all that happens is you get older. Anyone who has never made a mistake has never tried anything new. In the Objects tab, you can use the List List, Detail Detail and ER Di
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('65', '/Users/Administrator/Pictures/img_235551.png', '9M8fF', NULL, NULL, 'WA17b7yuXH', '2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward', NULL, '2024-10-25 11:46:14', '2018-04-28 22:50:21', 365.8484, 'To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Difficult circumstances serve as a textbook of life for people. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. To connect to a database or schema, simply double-click it in the pane. You will succeed because most people are lazy. It wasnt raining when Noah built the ark. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Anyone who has never made a mistake has never tried anything new. You must be the change you wish to see in the world. Creativity is intelligence having fun. The Synchronize to Database function will give you a full picture of all database differences. A mans best friends are his ten fingers. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. If you wait, all that happens is you get older. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. You cannot save people, you can just love them. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Sometimes you win, sometimes you learn. Remember that failure is an event, not a person. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. The past has no power over the present moment. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. You will succeed because most people are lazy. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. A query is used to extract data from the database in a readable format according to the user\'s request. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat 15 has added support for the system-wide dark mode. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. In a Telnet session, all communications,
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('66', 'C:\\Users\\Administrator\\Pictures\\img_162342.jpg', 'VZkOl', NULL, NULL, 'yQOPTaLZUP', '2-3-8 Yoyogi, Shibuya-ku', NULL, '2023-08-25 14:22:16', '2019-09-24 11:03:22', 927.4657, 'Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. The first step is as good as half over. It wasnt raining when Noah built the ark. How we spend our days is, of course, how we spend our lives. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Creativity is intelligence having fun. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To connect to a database or schema, simply double-click it in the pane. Creativity is intelligence having fun. Difficult circumstances serve as a textbook of life for people. What you get by achieving your goals is not as important as what you become by achieving your goals. You cannot save people, you can just love them. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Anyone who has ever made anything of importance was disciplined. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. You cannot save people, you can just love them. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. If you wait, all that happens is you get older. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. How we spend our days is, of course, how we spend our lives. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Genius is an infinite capacity for taking pains. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. I will greet this day with love in my heart. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('67', 'C:\\Users\\Administrator\\Pictures\\img_677976.jpg', 'tG7S8', NULL, NULL, '179S1ZMJ7j', '741 West Houston Street', NULL, '2020-07-29 13:23:01', '2006-12-12 13:38:49', 898.5629, 'It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. You will succeed because most people are lazy. Sometimes you win, sometimes you learn. Optimism is the one quality more associated with success and happiness than any other. How we spend our days is, of course, how we spend our lives. The first step is as good as half over. Optimism is the one quality more associated with success and happiness than any other. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. It wasnt raining when Noah built the ark. In the middle of winter I at last discovered that there was in me an invincible summer. How we spend our days is, of course, how we spend our lives. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Actually it is just in an idea when feel oneself can achieve and cannot achieve. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Anyone who has never made a mistake has never tried anything new. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. I will greet this day with love in my heart. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. A man is not old until regrets take the place of dreams. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Creativity is intelligence having fun. Navicat 15 has added support for the system-wide dark mode. To clear or reload various internal caches, flush tables, or acquire locks, control
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('68', '/home/Administrator/Pictures/img_590493.png', 'mkWyH', NULL, NULL, 'cDMUXWjvzB', '835 Broadway', NULL, '2023-03-05 18:37:16', '2022-05-23 11:41:20', 769.3687, 'Flexible settings enable you to set up a custom key for comparison and synchronization. The first step is as good as half over. To connect to a database or schema, simply double-click it in the pane. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. It wasnt raining when Noah built the ark. I will greet this day with love in my heart. Difficult circumstances serve as a textbook of life for people. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. It wasnt raining when Noah built the ark. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. A mans best friends are his ten fingers. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. How we spend our days is, of course, how we spend our lives. The first step is as good as half over. Flexible settings enable you to set up a custom key for comparison and synchronization. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. If it scares you, it might be a good thing to try. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. A comfort zone is a beautiful place, but nothing ever grows there. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Difficult circumstances serve as a textbook of life for people. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. If the plan doesnt work, change the plan, but never the goal. Difficult circumstances serve as a textbook of life for people. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. A comfort zone is a beautiful place, but nothing ever grows there. The Main Window consists of several tool
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('69', 'C:\\Users\\Administrator\\Pictures\\img_615786.jpg', 'wnjq9', NULL, NULL, 'aqiyaOGP29', '129 Rush Street', NULL, '2023-03-31 07:55:46', '2018-08-22 22:01:55', 787.3347, 'You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. If the plan doesnt work, change the plan, but never the goal. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It wasnt raining when Noah built the ark. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. I destroy my enemies when I make them my friends. What you get by achieving your goals is not as important as what you become by achieving your goals. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. In the middle of winter I at last discovered that there was in me an invincible summer. You will succeed because most people are lazy. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Remember that failure is an event, not a person. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. How we spend our days is, of course, how we spend our lives. Difficult circumstances serve as a textbook of life for people. Navicat 15 has added support for the system-wide dark mode. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. If you wait, all that happens is you get older. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('7', '/home/Administrator/Pictures/img_875833.jpg', 'M02Fe', NULL, NULL, 'sqqSiXiKSr', '222 Collier Road', NULL, '2020-03-30 07:54:56', '2009-06-24 08:19:30', 345.8618, 'In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Champions keep playing until they get it right. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The first step is as good as half over. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat 15 has added support for the system-wide dark mode. If you wait, all that happens is you get older. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Success consists of going from failure to failure without loss of enthusiasm. Creativity is intelligence having fun. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Flexible settings enable you to set up a custom key for comparison and synchronization. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. All journeys have secret destinations of which the traveler is unaware. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Remember that failure is an event, not a person. Success consists of going from failure to failure without loss of enthusiasm. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. The first step is as good as half over. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Anyone who has never made a mistake has never tried anything new. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. A mans best friends are his ten fingers. Genius is an infinite capacity for taking pains. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Actually it is just in an idea when feel oneself can achieve and cannot achieve. If you wait, all that happens is you get older. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. SQL Editor allows you to
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('70', '/Users/Administrator/Pictures/img_777917.jpg', 'Iywy4', NULL, NULL, 'jAP65r4QJK', '808 Cannon Street', NULL, '2023-04-05 10:31:43', '2011-04-06 00:56:13', 45.4665, 'To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences.', 'Genius is an infinite capacity for taking pains. In the middle of winter I at last discovered that there was in me an invincible summer. It wasnt raining when Noah built the ark. Creativity is intelligence having fun. If the plan doesnt work, change the plan, but never the goal. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. A comfort zone is a beautiful place, but nothing ever grows there. There is no way to happiness. Happiness is the way. I will greet this day with love in my heart. The reason why a great man is great is that he resolves to be a great man. To connect to a database or schema, simply double-click it in the pane. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. I may not have gone where I intended to go, but I think I have ended up where I needed to be. A mans best friends are his ten fingers. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Difficult circumstances serve as a textbook of life for people. Champions keep playing until they get it right. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Genius is an infinite capacity for taking pains. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences.', NULL, 'A mans best friends are his ten fingers. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. You cannot save people, you can just love them. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. In the middle of winter I at last discovered that there was in me an invincible summer. All the Navicat Cloud objects are located under different proj
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('71', '/home/Administrator/Pictures/img_781151.png', 'JMNAe', NULL, NULL, 'U8lD2H7N04', '146 New Street', NULL, '2020-05-25 04:44:45', '2017-07-12 04:06:26', 446.5164, 'A comfort zone is a beautiful place, but nothing ever grows there. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The reason why a great man is great is that he resolves to be a great man. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. There is no way to happiness. Happiness is the way. The past has no power over the present moment. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. How we spend our days is, of course, how we spend our lives. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Success consists of going from failure to failure without loss of enthusiasm. If it scares you, it might be a good thing to try. Anyone who has never made a mistake has never tried anything new. The past has no power over the present moment. Optimism is the one quality more associated with success and happiness than any other. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. The past has no power over the present moment. The past has no power over the present moment.', 'Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. There is no way to happiness. Happiness is the way. If it scares you, it might be a good thing to try. How we spend our days is, of course, how we spend our lives. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. You must be the change you wish to see in the world. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The first step is as good as half over. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. I will greet this day with love in my heart. Actually it is just in an idea when feel oneself can achieve and cannot achieve. You must be the change you wish to see in the world. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. A man is not old until regrets take the place of dr
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('72', '/home/Administrator/Pictures/img_038283.jpg', 'klqMn', NULL, NULL, '4VhkkRKFjN', '857 Yueliu Rd, Fangshan District', NULL, '2020-11-05 10:11:47', '2005-08-19 04:28:26', 312.8664, 'Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. If it scares you, it might be a good thing to try. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. I may not have gone where I intended to go, but I think I have ended up where I needed to be. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. If it scares you, it might be a good thing to try. You will succeed because most people are lazy. You cannot save people, you can just love them. Anyone who has never made a mistake has never tried anything new. Flexible settings enable you to set up a custom key for comparison and synchronization. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Optimism is the one quality more associated with success and happiness than any other. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Optimism is the one quality more associated with success and happiness than any other. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. All journeys have secret destinations of which the traveler is unaware. Remember that failure is an event, not a person. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Anyone who has ever made anything of importance was disciplined. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. It wasnt raining when Noah built the ark. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. In the middle of winter I at last discovered that there was in me an invincible summer. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Always k
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('73', '/home/Administrator/Pictures/img_856965.jpg', 'YOYh5', NULL, NULL, 'xQlWAnQHP3', '13-3-4 Toyohira 3 Jo, Toyohira Ward', NULL, '2024-04-17 11:30:13', '2009-12-08 18:33:46', 715.8474, 'A query is used to extract data from the database in a readable format according to the user\'s request. A man is not old until regrets take the place of dreams. You cannot save people, you can just love them. Difficult circumstances serve as a textbook of life for people. The first step is as good as half over. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The first step is as good as half over. The past has no power over the present moment. Actually it is just in an idea when feel oneself can achieve and cannot achieve. All journeys have secret destinations of which the traveler is unaware. A man is not old until regrets take the place of dreams. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Sometimes you win, sometimes you learn. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. A query is used to extract data from the database in a readable format according to the user\'s request. You cannot save people, you can just love them. A mans best friends are his ten fingers. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Anyone who has never made a mistake has never tried anything new. Sometimes you win, sometimes you learn. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('74', 'C:\\Users\\Administrator\\Pictures\\img_107216.jpg', 'YLvFI', NULL, NULL, 'l1xhlKWdj8', '471 Fern Street', NULL, '2021-11-20 05:21:10', '2014-08-31 11:37:29', 508.7160, 'If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The Synchronize to Database function will give you a full picture of all database differences. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat 15 has added support for the system-wide dark mode. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. I destroy my enemies when I make them my friends. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. In the middle of winter I at last discovered that there was in me an invincible summer. A comfort zone is a beautiful place, but nothing ever grows there. A man is not old until regrets take the place of dreams. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Champions keep playing until they get it right. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. If it scares you, it might be a good thing to try. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Anyone who has ever made anything of importance was disciplined. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat 15 has added support for the system-wide dark mode. The Synchronize to Database function will give you a full picture of all database differences. With its wel
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('75', '/Users/Administrator/Pictures/img_689142.png', 'RKQUs', NULL, NULL, 'RPiK7gUSKF', '1-6-14, Marunouchi, Chiyoda-ku', NULL, '2023-07-10 09:21:04', '2017-01-08 10:20:44', 490.1024, 'Always keep your eyes open. Keep watching. Because whatever you see can inspire you. You must be the change you wish to see in the world. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The On Startup feature allows you to control what tabs appear when you launch Navicat. If the plan doesnt work, change the plan, but never the goal. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. You cannot save people, you can just love them. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Anyone who has ever made anything of importance was disciplined. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. To connect to a database or schema, simply double-click it in the pane. Actually it is just in an idea when feel oneself can achieve and cannot achieve. If you wait, all that happens is you get older. The past has no power over the present moment. A man is not old until regrets take the place of dreams. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. You must be the change you wish to see in the world. Always keep your eyes open. Keep watching. Beca
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('76', 'C:\\Users\\Administrator\\Pictures\\img_557217.png', 'MgPRt', NULL, NULL, 'VWHvZOcvPd', '457 Xiaoping E Rd, Baiyun ', NULL, '2024-06-10 04:08:34', '2021-05-19 20:14:23', 840.9217, 'In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Champions keep playing until they get it right. The past has no power over the present moment. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. The On Startup feature allows you to control what tabs appear when you launch Navicat. There is no way to happiness. Happiness is the way. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. In the middle of winter I at last discovered that there was in me an invincible summer. If you wait, all that happens is you get older. To connect to a database or schema, simply double-click it in the pane. There is no way to happiness. Happiness is the way. The Synchronize to Database function will give you a full picture of all database differences. Typically, it is employed as an encrypted version of Telnet. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Success consists of going from failure to failure without loss of enthusiasm. Anyone who has never made a mistake has never tried anything new. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. A man is not old until regrets take the place of dreams. You will succeed because most people are lazy. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored.', 'SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. How we spend our days is, of course, h
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('77', 'C:\\Users\\Administrator\\Pictures\\img_591279.png', '5msKO', NULL, NULL, 'F0yWzvLC7c', '2-1-5 Kaminopporo 1 Jo, Atsubetsu Ward', NULL, '2020-05-05 12:17:28', '2013-07-23 06:02:21', 769.5336, 'The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. I destroy my enemies when I make them my friends. How we spend our days is, of course, how we spend our lives. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. All journeys have secret destinations of which the traveler is unaware. The Synchronize to Database function will give you a full picture of all database differences. A mans best friends are his ten fingers. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Remember that failure is an event, not a person. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. The reason why a great man is great is that he resolves to be a great man. Creativity is intelligence having fun. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Creativity is intelligence having fun. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. The past has no power over the present moment. If it scares you, it might be a good thing to try. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The past has no power over the present moment. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instan
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('78', 'C:\\Users\\Administrator\\Pictures\\img_615584.png', 'mOZaU', NULL, NULL, 'smszA8297O', '724 3rd Section Hongxing Road, Jinjiang District', NULL, '2024-07-09 17:25:31', '2014-07-17 15:16:14', 833.3079, 'In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. Difficult circumstances serve as a textbook of life for people. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. A mans best friends are his ten fingers. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. I will greet this day with love in my heart. Flexible settings enable you to set up a custom key for comparison and synchronization. Champions keep playing until they get it right. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. I destroy my enemies when I make them my friends. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. I destroy my enemies when I make them my friends. How we spend our days is, of course, how we spend our lives. In the middle of winter I at last discovered that there was in me an invincible summer. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. I will greet this day with love in my heart. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. A query is used to extract data from the database in a readable format according to the user\'s request. If you wait, all that happens is you get older. If the plan doesnt work, change the plan, but never the goal. I will greet this day with love in my heart. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Actually it is just in an idea when feel oneself can achieve and cannot achieve. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professio
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('79', '/home/Administrator/Pictures/img_592376.jpg', 'JMJiJ', NULL, NULL, 'BSOkeTPurh', '841 Kengmei 15th Alley', NULL, '2020-11-16 18:36:40', '2009-05-19 23:00:05', 579.2452, 'SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. What you get by achieving your goals is not as important as what you become by achieving your goals. The first step is as good as half over. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. I will greet this day with love in my heart. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. A mans best friends are his ten fingers. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. I may not have gone where I intended to go, but I think I have ended up where I needed to be. It wasnt raining when Noah built the ark. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. The On Startup feature allows you to control what tabs appear when you launch Navicat. I may not have gone where I intended to go, but I think I have ended up where I needed to be. If opportunity doesnt knock, build a door. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If opportunity doesnt knock, build a door. A mans best friends are his ten fingers. You cannot save people, you can just love them. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. The reason why a great man is great is that he resolves to be a great man. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server.', 'Navicat 15 has added support for the system-wide dark mode. You must be the change you wish to see in the world. In the middle of winter I at last discovered that there was in me an invincible summer. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. I destroy my enemies when I make them my friends. A mans best friends are his ten fingers. Success consists of going from failure to failure without loss of enthusiasm. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. A mans best friends are his ten fingers. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunnel
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('8', '/Users/Administrator/Pictures/img_701954.png', 'moUuh', NULL, NULL, 'gL5Pr0CG3B', '5-4-7 Kikusui 3 Jo, Shiroishi Ward,', NULL, '2021-02-19 12:45:39', '2019-11-15 06:38:20', 151.2368, 'Anyone who has never made a mistake has never tried anything new. Genius is an infinite capacity for taking pains. The Synchronize to Database function will give you a full picture of all database differences. Remember that failure is an event, not a person. You cannot save people, you can just love them. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. You cannot save people, you can just love them. A man is not old until regrets take the place of dreams. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. If it scares you, it might be a good thing to try. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. What you get by achieving your goals is not as important as what you become by achieving your goals. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. The reason why a great man is great is that he resolves to be a great man. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Sometimes you win, sometimes you learn. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Creativity is intelligence having fun. What you get by achieving your goals is not as important as what you become by achieving your goals. Anyone who has ever made anything of importance was disciplined. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. The On Startup feature allows you to control what tabs appear when you launch Navicat. How we spend our days is, of course, how we spend our lives. The reason why a great man is great is that he resolves to be a great man. A query is used to extract data from the database in a readable format according to the user\'s request. The On Startup feature allows you to control what tabs appear when you launch Navicat. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. You cannot save people, you can just love them. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. What you get by achieving your goals is not as important as what you become by achieving your goals. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Success consists of going from failure to failure without loss
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('80', 'C:\\Users\\Administrator\\Pictures\\img_412421.jpg', '3fapD', NULL, NULL, '2rTHI5QDK9', '361 Rush Street', NULL, '2022-07-18 05:45:23', '2017-06-09 08:22:33', 555.1673, 'Anyone who has ever made anything of importance was disciplined. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. A comfort zone is a beautiful place, but nothing ever grows there. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Creativity is intelligence having fun. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. A man is not old until regrets take the place of dreams. The On Startup feature allows you to control what tabs appear when you launch Navicat. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. A comfort zone is a beautiful place, but nothing ever grows there. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. What you get by achieving your goals is not as important as what you become by achieving your goals. If you wait, all that happens is you get older. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Remember that failure is an event, not a person. Export Wizard allows you to export data from tables, collections, views, or query results to any available formats. If you wait, all that happens is you get older. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Success consists of going from failure to failure without loss of enthusiasm. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Anyone who has never made a mistake has never tried anything new.
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('81', '/Users/Administrator/Pictures/img_089418.png', 'Lwo1s', NULL, NULL, 'oeT1xtNQ4s', '3-15-9 Ginza, Chuo-ku', NULL, '2023-09-18 04:20:25', '2018-03-03 04:42:49', 680.9560, 'SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. A query is used to extract data from the database in a readable format according to the user\'s request. A query is used to extract data from the database in a readable format according to the user\'s request. If you wait, all that happens is you get older. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Anyone who has never made a mistake has never tried anything new. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. There is no way to happiness. Happiness is the way. Flexible settings enable you to set up a custom key for comparison and synchronization. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. All journeys have secret destinations of which the traveler is unaware. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Flexible settings enable you to set up a custom key for comparison and synchronization. A query is used to extract data from the database in a readable format according to the user\'s request. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The On Startup feature allows you to control what tabs appear when you launch Navicat. Champions keep playing until they get it right. If it scares you, it might be a good thing to try. You cannot save people, you can just love them. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. You will succeed because most people are lazy. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Creativity is intelligence having fun. You cannot save people, you can just love them. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Flexible settings enable you to set up a custom key for comparison and synchronization. The reason why a great man is great is that he resolves to be a great man. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Navicat allows you to transfer data from one database and/or s
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('82', '/home/Administrator/Pictures/img_187749.jpg', 'Yvd1A', NULL, NULL, 'Wyk7IMySQE', '52 Whitehouse Lane, Huntingdon Rd', NULL, '2024-11-16 08:17:13', '2002-04-30 04:18:58', 476.2980, 'Genius is an infinite capacity for taking pains. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. To connect to a database or schema, simply double-click it in the pane. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. If the plan doesnt work, change the plan, but never the goal. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. You cannot save people, you can just love them.', 'With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Navicat 15 has added support for the system-wide dark mode. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Remember that failure is an event, not a person. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. How we spend our days is, of course, how we spend our lives. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. The reason why a great man is great is that he resolves to be a great man. Optimism is the one quality more associated with success and happiness than any other. Navicat 15 has added support for the system-wide dark mode. The On Startup feature allows you to control what tabs appear when you launch Navicat. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. All journeys have secret destinations of which the traveler is unaware. Optimism is the one quality more associated with success and happiness than any other. Navicat 15 has added support for the system-wide dark mode. If you wait, all that happens is you get older. It wasnt raining when Noah built the ark. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. The first step is as good as half over. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('83', '/home/Administrator/Pictures/img_481169.png', 'GbbVm', NULL, NULL, 'dUYXF7etax', '909 Shennan Ave, Futian District', NULL, '2020-07-29 01:23:19', '2005-05-17 16:56:53', 574.2278, 'Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. A man is not old until regrets take the place of dreams. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. A query is used to extract data from the database in a readable format according to the user\'s request. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Sometimes you win, sometimes you learn. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. What you get by achieving your goals is not as important as what you become by achieving your goals. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. You must be the change you wish to see in the world. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. If it scares you, it might be a good thing to try. The Synchronize to Database function will give you a full picture of all database differences. How we spend our days is, of course, how we spend our lives. The On Startup feature allows you to control what tabs appear when you launch Navicat. The reason why a great man is great is that he resolves to be a great man. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Difficult circumstances serve as a textbook of life for people. If the plan doesnt work, change the plan, but never the goal. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. If the plan doesnt work, change the plan, but never the goal. Creativity is intelligence having fun. Flexible settings enable you to set up a custom key for comparison and synchronization. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. All journeys have secret destinations of which the traveler is una
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('84', '/Users/Administrator/Pictures/img_034540.png', 'jQEIK', NULL, NULL, '25WkLhVYAo', '3 1-1 Honjocho, Yamatokoriyama', NULL, '2022-08-25 18:20:01', '2005-03-14 04:17:07', 303.3335, 'Navicat 15 has added support for the system-wide dark mode. All journeys have secret destinations of which the traveler is unaware. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The past has no power over the present moment. The On Startup feature allows you to control what tabs appear when you launch Navicat. Success consists of going from failure to failure without loss of enthusiasm. How we spend our days is, of course, how we spend our lives. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. A query is used to extract data from the database in a readable format according to the user\'s request. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Sometimes you win, sometimes you learn. Champions keep playing until they get it right. Success consists of going from failure to failure without loss of enthusiasm. Flexible settings enable you to set up a custom key for comparison and synchronization. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Success consists of going from failure to failure without loss of enthusiasm. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. All journeys have secret destinations of which the traveler is unaware. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Typically, it is employed as an encrypted version of Telnet. Champions keep playing until they get it right. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. To connect to a database or schema, simply double-click it in the pane. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Champions keep playing until they get it right. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. It provides strong authentication and secure encrypted communications between two hosts, known as SS
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('85', '/Users/Administrator/Pictures/img_698905.png', 'RzM1P', NULL, NULL, 'OCxDeHc7qb', '2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward', NULL, '2023-02-05 23:59:25', '2018-02-06 21:15:31', 65.5013, 'With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Remember that failure is an event, not a person. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. If it scares you, it might be a good thing to try. Anyone who has never made a mistake has never tried anything new. I destroy my enemies when I make them my friends. In the middle of winter I at last discovered that there was in me an invincible summer. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. How we spend our days is, of course, how we spend our lives. To connect to a database or schema, simply double-click it in the pane. A mans best friends are his ten fingers. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. You cannot save people, you can just love them. The Synchronize to Database function will give you a full picture of all database differences. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. A comfort zone is a beautiful place, but nothing ever grows there. It wasnt raining when Noah built the ark. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. A comfort zone is a beautiful place, but nothing ever grows there. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. A man is not old until regrets take the place of dreams. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Success consists of going from failure to failure without loss of enthusiasm. A mans best friends are his ten fingers. A comfort zone is a beautiful place, but nothing ever grows there. The first step is as good as half over. Creativity is intelligence having fun. I may not have gone where I intended to go, but I think I have ended up where I needed to be. The On Startup feature allows you to control what tabs appear when you launch Navicat. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. It can also manage cloud databases such as Amazon Redshift, Amazon R
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('86', '/Users/Administrator/Pictures/img_499124.jpg', 'DP2uP', NULL, NULL, '6UxuFU2wG0', '442 S Broadway', NULL, '2021-01-28 20:06:49', '2001-01-01 21:26:28', 755.2098, 'A man is not old until regrets take the place of dreams. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. A comfort zone is a beautiful place, but nothing ever grows there. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Genius is an infinite capacity for taking pains. The first step is as good as half over. You will succeed because most people are lazy. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. The reason why a great man is great is that he resolves to be a great man. You must be the change you wish to see in the world. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. The first step is as good as half over. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The first step is as good as half over. A mans best friends are his ten fingers. Sometimes you win, sometimes you learn. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. All journeys have secret destinations of which the traveler is unaware. Anyone who has never made a mistake has never tried anything new. Difficult circumstances serve as a textbook of life for people. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. If the plan doesnt work, change the plan, but never the goal. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Difficult circumstances serve as a textbook of life for people. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. How we spend our days is, of course, how we spend our lives. To connect to a database or schema, simply double-click it in the pane. A query is used to extract data from the database in a readable format according t
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('87', 'C:\\Users\\Administrator\\Pictures\\img_917683.png', 'hjwMj', NULL, NULL, 'N6esK0JrWP', '690 Figueroa Street', NULL, '2024-02-21 11:03:23', '2014-06-04 02:26:07', 869.1397, 'Success consists of going from failure to failure without loss of enthusiasm. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. There is no way to happiness. Happiness is the way. I may not have gone where I intended to go, but I think I have ended up where I needed to be. A man is not old until regrets take the place of dreams. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Anyone who has never made a mistake has never tried anything new. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. The reason why a great man is great is that he resolves to be a great man. Success consists of going from failure to failure without loss of enthusiasm. Actually it is just in an idea when feel oneself can achieve and cannot achieve. All journeys have secret destinations of which the traveler is unaware. A comfort zone is a beautiful place, but nothing ever grows there. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. The Synchronize to Database function will give you a full picture of all database differences. Difficult circumstances serve as a textbook of life for people. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. In the middle of winter I at last discovered that there was in me an invincible summer. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Success consists of going from failure to failure without loss of enthusiasm. If you wait,
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('88', '/Users/Administrator/Pictures/img_996988.png', 'hLBW4', NULL, NULL, 'MUL4Shsmeh', '554 Elms Rd, Botley', NULL, '2021-04-19 22:39:37', '2001-05-07 06:43:22', 74.1885, 'Remember that failure is an event, not a person. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. I will greet this day with love in my heart. A mans best friends are his ten fingers. There is no way to happiness. Happiness is the way. The reason why a great man is great is that he resolves to be a great man. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. How we spend our days is, of course, how we spend our lives. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. If you wait, all that happens is you get older. Navicat 15 has added support for the system-wide dark mode. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Success consists of going from failure to failure without loss of enthusiasm. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. All journeys have secret destinations of which the traveler is unaware. Optimism is the one quality more associated with success and happiness than any other. Difficult circumstances serve as a textbook of life for people. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('89', 'C:\\Users\\Administrator\\Pictures\\img_616434.png', 'ua1Hw', NULL, NULL, '8y9uRjcmXV', '786 West Houston Street', NULL, '2022-04-08 07:17:25', '2015-09-30 05:23:29', 660.7681, 'If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. Typically, it is employed as an encrypted version of Telnet. Success consists of going from failure to failure without loss of enthusiasm. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. If the plan doesnt work, change the plan, but never the goal. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. In the middle of winter I at last discovered that there was in me an invincible summer. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. If opportunity doesnt knock, build a door. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. A comfort zone is a beautiful place, but nothing ever grows there. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. I will greet this day with love in my heart. Genius is an infinite capacity for taking pains. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. The first step is as good as half over. Anyone who has ever made anything of importance was disciplined. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. You must be the change you wish to see in the world. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. A comfort zone is a beautiful place, but nothing ever grows there. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. It is used while your ISPs do not allow direct connections, but allows establishin
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('9', '/home/Administrator/Pictures/img_825637.jpg', 'm7t5X', NULL, NULL, 'CPj9X4QpUD', '593 Lefeng 6th Rd', NULL, '2021-11-26 15:22:42', '2002-03-01 17:22:23', 856.0038, 'Optimism is the one quality more associated with success and happiness than any other. The Synchronize to Database function will give you a full picture of all database differences. I may not have gone where I intended to go, but I think I have ended up where I needed to be. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. Genius is an infinite capacity for taking pains. Navicat Monitor is a safe, simple and agentless remote server monitoring tool that is packed with powerful features to make your monitoring effective as possible. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. It wasnt raining when Noah built the ark. The On Startup feature allows you to control what tabs appear when you launch Navicat. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Optimism is the one quality more associated with success and happiness than any other. Typically, it is employed as an encrypted version of Telnet. Optimism is the one quality more associated with success and happiness than any other. I will greet this day with love in my heart. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. If opportunity doesnt knock, build a door. Typically, it is employed as an encrypted version of Telnet. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Sometimes you win, sometimes you learn. A comfort zone is a beautiful place, but nothing ever grows there. In the middle of winter I at last discovered that there was in me an invincible summer. You must be the change you wish to see in the world. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. Genius is an infinite capacity for taking pa
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('90', '/home/Administrator/Pictures/img_764701.png', 'ZIbld', NULL, NULL, 'XZ1IjAdoJS', '3-9-5 Gakuenminami', NULL, '2022-10-19 11:20:46', '2016-01-13 16:53:51', 814.3390, 'In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. A mans best friends are his ten fingers. All journeys have secret destinations of which the traveler is unaware. The past has no power over the present moment. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. There is no way to happiness. Happiness is the way. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Champions keep playing until they get it right. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Creativity is intelligence having fun. If it scares you, it might be a good thing to try. It wasnt raining when Noah built the ark. A query is used to extract data from the database in a readable format according to the user\'s request. Typically, it is employed as an encrypted version of Telnet. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. A mans best friends are his ten fingers. To connect to a database or schema, simply double-click it in the pane. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. I will greet this day with love in my heart. If you wait, all that happens is you get older. You must be the change you wish to see in the world. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. It collects process metrics such as CPU load, RAM usage, and a variety of other resources over SSH/SNMP. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. What you get by achieving your goals is not as important as what you become by achieving your goals. Typically, it is employed as an encrypted version of Telnet. Anyone who has ever made anything of importance was disciplined. Anyone who has ever made anything of importance was disciplined. In
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('91', 'C:\\Users\\Administrator\\Pictures\\img_384354.png', 'QK5se', NULL, NULL, 'hqTf0HtdnD', '13-3-5 Toyohira 3 Jo, Toyohira Ward', NULL, '2020-12-06 15:27:29', '2005-03-02 15:55:03', 252.1976, 'All journeys have secret destinations of which the traveler is unaware. I destroy my enemies when I make them my friends. The Synchronize to Database function will give you a full picture of all database differences. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. You must be the change you wish to see in the world. How we spend our days is, of course, how we spend our lives. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. A comfort zone is a beautiful place, but nothing ever grows there. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. How we spend our days is, of course, how we spend our lives. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. Sometimes you win, sometimes you learn. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. If the plan doesnt work, change the plan, but never the goal. All journeys have secret destinations of which the traveler is unaware. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. A query is used to extract data from the database in a readable format according to the user\'s request. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and differe
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('92', 'C:\\Users\\Administrator\\Pictures\\img_286692.jpg', '94FXP', NULL, NULL, 'NcBOjN6Eeo', '299 Elms Rd, Botley', NULL, '2022-09-16 15:14:44', '2001-11-17 20:49:26', 773.9184, 'To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. If the Show objects under schema in navigation pane option is checked at the Preferences window, all database objects are also displayed in the pane. A comfort zone is a beautiful place, but nothing ever grows there. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. The On Startup feature allows you to control what tabs appear when you launch Navicat. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Anyone who has ever made anything of importance was disciplined. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Actually it is just in an idea when feel oneself can achieve and cannot achieve. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. Navicat 15 has added support for the system-wide dark mode. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Typically, it is employed as an encrypted version of Telnet. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. Typically, it is employed as an encrypted version of Telnet. How we spend our days is, of course, how we spend our lives. If opportunity doesnt knock, build a door. A comfort zone is a beautiful place, but nothing ever grows there. I destroy my enemies when I make them my friends. Typically, it is employed as an encrypted version of Telnet. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload p
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('93', '/home/Administrator/Pictures/img_015250.png', 'TnUak', NULL, NULL, 'yR6yW15soy', '3-19-9 Shimizu, Kita Ward', NULL, '2020-04-07 04:21:16', '2013-01-17 16:43:14', 706.8847, 'To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. In a Telnet session, all communications, including username and password, are transmitted in plain-text, allowing anyone to listen-in on your session and steal passwords and other information. SSH serves to prevent such vulnerabilities and allows you to access a remote server\'s shell without compromising security. Sometimes you win, sometimes you learn. If the plan doesnt work, change the plan, but never the goal. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. In the middle of winter I at last discovered that there was in me an invincible summer. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. Remember that failure is an event, not a person. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. A mans best friends are his ten fingers. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. If opportunity doesnt knock, build a door. Success consists of going from failure to failure without loss of enthusiasm. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. A mans best friends are his ten fingers. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. You cannot save people, you can just love them. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. A man is not old until regrets take the place of dreams. I may not have gone where I intended to go, but I think I have ended up where I needed to be. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Secure Sockets Layer(SSL) is a protocol for transmitting private documents via the Internet. If the Show objects under schema in navigation pane option is checked at the Preferences win
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('94', '/Users/Administrator/Pictures/img_632122.png', 'nSPzY', NULL, NULL, '2NBWQQu3fL', '467 Ganlan Rd, Pudong', NULL, '2021-05-29 11:32:06', '2021-01-16 03:13:00', 464.5879, 'You must be the change you wish to see in the world. The On Startup feature allows you to control what tabs appear when you launch Navicat. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. What you get by achieving your goals is not as important as what you become by achieving your goals. Navicat 15 has added support for the system-wide dark mode. The reason why a great man is great is that he resolves to be a great man. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat 15 has added support for the system-wide dark mode. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Navicat provides powerful tools for working with queries: Query Editor for editing the query text directly, and Query Builder, Find Builder or Aggregate Builder for building queries visually. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. I will greet this day with love in my heart. There is no way to happiness. Happiness is the way. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Difficult circumstances serve as a textbook of life for people. The reason why a great man is great is that he resolves to be a great man. In the middle of winter I at last discovered that there was in me an invincible summer. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. HTTP Tunneling is a method for connecting to a server that uses the same protocol (http://) and the same port (port 80) as a web server does. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. Sometimes you win, sometimes you learn. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. To connect to a database or schema, simply double-click it in the pane. The first step is as good as half over. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Optimism is the one quality more associated with success and happiness than any other. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Remember that failure is an event, not a person. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. A man is not old until regrets take the place of dreams. A query is used to extract data from the database in a readable format according to the user\'s request. The Main Window consists of several toolbars and panes for you to work on connections, database objects a
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('95', 'C:\\Users\\Administrator\\Pictures\\img_613078.jpg', 'rhbJx', NULL, NULL, 'CWXiIFPgJe', '572 East Cooke Road', NULL, '2021-06-09 07:09:59', '2007-05-09 08:19:48', 301.7607, 'Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. I destroy my enemies when I make them my friends. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. If you wait, all that happens is you get older. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. A mans best friends are his ten fingers. Optimism is the one quality more associated with success and happiness than any other. Anyone who has ever made anything of importance was disciplined. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Actually it is just in an idea when feel oneself can achieve and cannot achieve. Creativity is intelligence having fun. Instead of wondering when your next vacation is, maybe you should set up a life you dont need to escape from. There is no way to happiness. Happiness is the way. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Navicat is a multi-connections Database Administration tool allowing you to connect to MySQL, Oracle, PostgreSQL, SQLite, SQL Server, MariaDB and/or MongoDB databases, making database administration to multiple kinds of database so easy. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. All journeys have secret destinations of which the traveler is unaware. Flexible settings enable you to set up a custom key for comparison and synchronization. Typically, it is employed as an encrypted version of Telnet. The On Startup feature allows you to control what tabs appear when you launch Navicat. I may not have gone where I intended to go, but I think I have ended up where I needed to be. Success consists of going from failure to failure without loss of enthusiasm. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. How we spend our days is, of course, how we spend our lives. Flexible settings enable you to set up a custom key for comparison and synchronization. SQL Editor allows you to cr
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('96', 'C:\\Users\\Administrator\\Pictures\\img_134278.jpg', 'eWtoh', NULL, NULL, '5RiTTzbzpx', '323 39 William IV St, Charing Cross', NULL, '2024-08-13 14:16:31', '2008-01-18 05:37:11', 304.1944, 'Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. Difficult circumstances serve as a textbook of life for people. Typically, it is employed as an encrypted version of Telnet. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. It wasnt raining when Noah built the ark. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. Typically, it is employed as an encrypted version of Telnet. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. In the Objects tab, you can use the List List, Detail Detail and ER Diagram ER Diagram buttons to change the object view. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. The Synchronize to Database function will give you a full picture of all database differences. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. I will greet this day with love in my heart. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. Monitored servers include MySQL, MariaDB and SQL Server, and compatible with cloud databases like Amazon RDS, Amazon Aurora, Oracle Cloud, Google Cloud and Microsoft Azure. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. To connect to a database or schema, simply double-click it in the pane. A mans best friends are his ten fingers. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. I will greet this day with love in my heart. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. A mans best friends are his ten fingers. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane. A mans best friends are his ten fingers. After comparing data, the window shows the number of records that will be inserted, updated or del
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('97', '/Users/Administrator/Pictures/img_675440.jpg', 'osOqT', NULL, NULL, 'PFHisSzFrI', '357 Xiaoping E Rd, Baiyun ', NULL, '2022-10-22 00:23:59', '2024-10-21 20:27:15', 974.4786, 'To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. If it scares you, it might be a good thing to try. If you wait, all that happens is you get older. Sometimes you win, sometimes you learn. Navicat authorizes you to make connection to remote servers running on different platforms (i.e. Windows, macOS, Linux and UNIX), and supports PAM and GSSAPI authentication. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Creativity is intelligence having fun. Navicat Monitor can be installed on any local computer or virtual machine and does not require any software installation on the servers being monitored. Navicat Data Modeler enables you to build high-quality conceptual, logical and physical data models for a wide variety of audiences. You cannot save people, you can just love them. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. Navicat 15 has added support for the system-wide dark mode. All journeys have secret destinations of which the traveler is unaware. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. A man is not old until regrets take the place of dreams. A query is used to extract data from the database in a readable format according to the user\'s request. Always keep your eyes open. Keep watching. Because whatever you see can inspire you. Navicat Cloud could not connect and access your databases. By which it means, it could only store your connection settings, queries, model files, and virtual group; your database passwords and data (e.g. tables, views, etc) will not be stored to Navicat Cloud. The first step is as good as half over. To clear or reload various internal caches, flush tables, or acquire locks, control-click your connection in the Navigation pane and select Flush and choose the flush option. You must have the reload privilege to use this feature. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. To start working with your server in Navicat, you should first establish a connection or several connections using the Connection window. In the middle of winter I at last discovered that there was in me an invincible summer. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models.', 'You must be the change you wish to see in the world. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. I destroy my enemies when I make them my friends. Actually it is just in an idea when feel oneself can achieve and cannot achieve. You can select any connections, object
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('98', '/home/Administrator/Pictures/img_600627.jpg', 'vew5K', NULL, NULL, 'qBEVyfMipy', '95 Yueliu Rd, Fangshan District', NULL, '2022-05-17 18:34:53', '2012-09-28 13:54:11', 186.6101, 'The Information Pane shows the detailed object information, project activities, the DDL of database objects, object dependencies, membership of users/roles and preview. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. It provides strong authentication and secure encrypted communications between two hosts, known as SSH Port Forwarding (Tunneling), over an insecure network. I may not have gone where I intended to go, but I think I have ended up where I needed to be. It can also manage cloud databases such as Amazon Redshift, Amazon RDS, Alibaba Cloud. Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to database server. The first step is as good as half over. You will succeed because most people are lazy. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. After comparing data, the window shows the number of records that will be inserted, updated or deleted in the target. Anyone who has never made a mistake has never tried anything new. The Synchronize to Database function will give you a full picture of all database differences. In other words, Navicat provides the ability for data in different databases and/or schemas to be kept up-to-date so that each repository contains the same information. SQL Editor allows you to create and edit SQL text, prepare and execute selected queries. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTTP, set the database login information in the General tab. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. A comfort zone is a beautiful place, but nothing ever grows there. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. The past has no power over the present moment. Anyone who has ever made anything of importance was disciplined. The Main Window consists of several toolbars and panes for you to work on connections, database objects and advanced tools. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. All journeys have secret destinations of which the traveler is unaware. To get a secure connection, the first thing you need to do is to install OpenSSL Library and download Database Source. Typically, it is employed as an encrypted version of Telnet. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. The Synchronize to Database function will give you a full picture of all database differences. It is used while your ISPs do not allow direct connections, but allows establishing HTTP connections. All journeys have secret destinations of which the traveler is unaware. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. Creativity is intelligence having fun. A man is not old until regrets take the place of dreams. All the Navicat Cloud objects are located under different projects. You can share the project to other Navicat Cloud accounts for collaboration. If the plan doesnt work, change the plan, but never the
INSERT INTO `t_app_record_api_response` (`record_id`, `path`, `method`, `url_param`, `response_code`, `media_type`, `client_address`, `header`, `request_time`, `response_time`, `use_time`, `request_msg`, `response_msg`, `cookie`, `err_msg`) VALUES ('99', '/home/Administrator/Pictures/img_508922.png', 'q0KwO', NULL, NULL, 'oualHmuAiS', 'No. 246, Shuangqing Rd, Chenghua District', NULL, '2020-03-08 06:53:42', '2007-07-02 19:50:17', 519.1268, 'Anyone who has ever made anything of importance was disciplined. Navicat Monitor requires a repository to store alerts and metrics for historical analysis. After logged in the Navicat Cloud feature, the Navigation pane will be divided into Navicat Cloud and My Connections sections. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. Navicat Data Modeler is a powerful and cost-effective database design tool which helps you build high-quality conceptual, logical and physical data models. If your Internet Service Provider (ISP) does not provide direct access to its server, Secure Tunneling Protocol (SSH) / HTTP is another solution. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. Creativity is intelligence having fun. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. The reason why a great man is great is that he resolves to be a great man. Navicat provides a wide range advanced features, such as compelling code editing capabilities, smart code-completion, SQL formatting, and more. The On Startup feature allows you to control what tabs appear when you launch Navicat. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. Navicat 15 has added support for the system-wide dark mode. You can select any connections, objects or projects, and then select the corresponding buttons on the Information Pane.', 'In the middle of winter I at last discovered that there was in me an invincible summer. Such sessions are also susceptible to session hijacking, where a malicious user takes over your session once you have authenticated. The repository database can be an existing MySQL, MariaDB, PostgreSQL, SQL Server, or Amazon RDS instance. The Navigation pane employs tree structure which allows you to take action upon the database and their objects through their pop-up menus quickly and easily. I will greet this day with love in my heart. To successfully establish a new connection to local/remote server - no matter via SSL or SSH, set the database login information in the General tab. To open a query using an external editor, control-click it and select Open with External Editor. You can set the file path of an external editor in Preferences. With its well-designed Graphical User Interface(GUI), Navicat lets you quickly and easily create, organize, access and share information in a secure and easy way. Import Wizard allows you to import data to tables/collections from CSV, TXT, XML, DBF and more. Secure SHell (SSH) is a program to log in into another computer over a network, execute commands on a remote server, and move files from one machine to another. The first step is as good as half over. Navicat allows you to transfer data from one database and/or schema to another with detailed analytical process. Genius is an infinite capacity for taking pains. Navicat Cloud provides a cloud service for synchronizing connections, queries, model files and virtual group information from Navicat, other Navicat family members, different machines and different platforms. To successfully establish a new connection to local/remote server - no matter via SSL, SSH or HTT
COMMIT;
-- ----------------------------
-- Table structure for t_app_record_err
-- ----------------------------
DROP TABLE IF EXISTS `t_app_record_err`;
CREATE TABLE `t_app_record_err` (
`id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '序号',
`equipment_type` int NOT NULL COMMENT '设备类型',
`equipment_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '设备名称',
`equipment_Id` varchar(64) NOT NULL COMMENT '设备编号',
`err_code` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '报警编号',
`create_time` datetime NOT NULL COMMENT '报警时间',
`recover_time` datetime DEFAULT NULL COMMENT '恢复时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_record_err
-- ----------------------------
BEGIN;
INSERT INTO `t_app_record_err` (`id`, `equipment_type`, `equipment_name`, `equipment_Id`, `err_code`, `create_time`, `recover_time`) VALUES ('12312', 1, '3', '101', '35435', '2025-11-13 15:35:38', NULL);
INSERT INTO `t_app_record_err` (`id`, `equipment_type`, `equipment_name`, `equipment_Id`, `err_code`, `create_time`, `recover_time`) VALUES ('234234', 2, '343', '2233', '334', '2025-11-17 00:55:33', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_record_maintenance
-- ----------------------------
DROP TABLE IF EXISTS `t_app_record_maintenance`;
CREATE TABLE `t_app_record_maintenance` (
`id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`maintenance_no` int NOT NULL,
`maintenance_time` datetime NOT NULL,
`maintenance_person` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_record_maintenance
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for t_app_record_plc_interactive
-- ----------------------------
DROP TABLE IF EXISTS `t_app_record_plc_interactive`;
CREATE TABLE `t_app_record_plc_interactive` (
`record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '记录号',
`interactive_type` int NOT NULL COMMENT '交互类型',
`plc_name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'PLC 名称',
`msg_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '消息号',
`msg` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '消息数据',
`create_time` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_record_plc_interactive
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for t_app_record_scan
-- ----------------------------
DROP TABLE IF EXISTS `t_app_record_scan`;
CREATE TABLE `t_app_record_scan` (
`record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '记录号',
`location` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '扫码位置',
`code` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '条码',
`size` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '尺寸',
`weight` decimal(10,4) NOT NULL DEFAULT '-1.0000' COMMENT '重量',
`length` decimal(10,4) NOT NULL DEFAULT '-1.0000' COMMENT '',
`width` decimal(10,4) NOT NULL DEFAULT '-1.0000' COMMENT '',
`height` decimal(10,4) NOT NULL DEFAULT '-1.0000' COMMENT '',
`scan_time` datetime NOT NULL COMMENT '扫码时间',
`remark` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`record_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of t_app_record_scan
-- ----------------------------
BEGIN;
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004532839010000', 'P1', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004532908010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004532954010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533011010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533065010000', 'P1', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533100010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533146010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533181010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533217010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533260010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533297010000', 'P1', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004533338010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:13', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004540313010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:20', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004548547010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:29', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004551790010000', 'P1', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:42:32', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735004580743010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:43:01', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005002734010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:50:03', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005004728010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:50:05', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005011930010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:50:12', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005016077010000', 'P1', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:50:16', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005037557010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:50:38', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005044151010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:50:44', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005069172010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:51:09', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005081114010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:51:21', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005081114010001', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:51:21', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005086533010000', '0001', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:51:27', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005148087010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:52:28', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005148088010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:52:28', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005148091010000', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:52:28', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735005148091010001', '0003', 'NoRead', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 09:52:28', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735006030923010000', 'P1', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 10:07:11', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735006460966010000', '0007', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 10:14:21', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735006956351010000', '0007', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 10:22:36', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735007088814010000', '0007', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 10:24:49', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735007164134010000', '0007', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 10:26:04', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735008100026010000', '0007', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 10:41:40', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735008245941010000', '0007', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 10:44:06', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735008887930010000', '0007', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 10:54:48', 'PLC');
INSERT INTO `t_app_record_scan` (`record_id`, `location`, `code`, `size`, `weight`, `length`, `width`, `height`, `scan_time`, `remark`) VALUES ('1735013556515010000', '0007', '', '0', 0.0000, 0.0000, 0.0000, 0.0000, '2024-12-24 12:12:37', 'PLC');
COMMIT;
-- ----------------------------
-- Table structure for t_app_record_task_msg
-- ----------------------------
DROP TABLE IF EXISTS `t_app_record_task_msg`;
CREATE TABLE `t_app_record_task_msg` (
`record_id` varchar(64) NOT NULL COMMENT '记录号',
`task_id` varchar(64) DEFAULT NULL COMMENT '任务号',
`vahicle_no` varchar(64) DEFAULT NULL COMMENT '载具号',
`create_time` datetime NOT NULL COMMENT '创建时间',
`msg` varchar(1024) DEFAULT NULL COMMENT '信息',
PRIMARY KEY (`record_id`),
KEY `task_id_index` (`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_record_task_msg
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for t_app_stacker_info
-- ----------------------------
DROP TABLE IF EXISTS `t_app_stacker_info`;
CREATE TABLE `t_app_stacker_info` (
`stacker_id` int NOT NULL COMMENT '堆垛机ID',
`plc_id` int NOT NULL COMMENT '对应的PLCID',
`stacker_name` varchar(64) NOT NULL COMMENT '堆垛机名称',
`stacker_status` int NOT NULL COMMENT '堆垛机状态',
`fork_status` varchar(64) NOT NULL COMMENT '货叉状态',
`allow_in` int NOT NULL COMMENT '是否允许入库',
`allow_out` int NOT NULL COMMENT '是否允许出库',
`allow_move` int NOT NULL COMMENT '是否允许移库',
`action_beat` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '动作节拍',
`read_status_address` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '读取堆垛机状态的地址',
`write_task_address` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '写任务的地址',
`task_confirm_address` varchar(64) DEFAULT NULL COMMENT '任务确认的地址',
`task_status_address` varchar(64) DEFAULT NULL COMMENT '过账地址',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`stacker_id`,`read_status_address`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_stacker_info
-- ----------------------------
BEGIN;
INSERT INTO `t_app_stacker_info` (`stacker_id`, `plc_id`, `stacker_name`, `stacker_status`, `fork_status`, `allow_in`, `allow_out`, `allow_move`, `action_beat`, `read_status_address`, `write_task_address`, `task_confirm_address`, `task_status_address`, `create_time`, `update_time`, `remark`) VALUES (1, 1, '堆垛机1号', 1, '1', 1, 1, 1, '92121', 'DB90.0', 'DB91.0', 'DB91.101', 'DB70.0', '2025-05-30 08:54:37', '2025-06-09 14:39:06', NULL);
INSERT INTO `t_app_stacker_info` (`stacker_id`, `plc_id`, `stacker_name`, `stacker_status`, `fork_status`, `allow_in`, `allow_out`, `allow_move`, `action_beat`, `read_status_address`, `write_task_address`, `task_confirm_address`, `task_status_address`, `create_time`, `update_time`, `remark`) VALUES (2, 2, '堆垛机2号', 0, '10', 1, 1, 1, '921', 'DB90.0', 'DB91.0;DB91.80', 'DB91.100', 'DB70.0', '2025-05-30 08:55:34', '2025-05-30 15:28:09', '测试修改');
INSERT INTO `t_app_stacker_info` (`stacker_id`, `plc_id`, `stacker_name`, `stacker_status`, `fork_status`, `allow_in`, `allow_out`, `allow_move`, `action_beat`, `read_status_address`, `write_task_address`, `task_confirm_address`, `task_status_address`, `create_time`, `update_time`, `remark`) VALUES (3, 4, '堆垛机3号', 1, '1', 1, 1, 1, '921', 'DB90.0', 'DB91.0', 'DB91.100', 'DB70.0', '2025-05-30 10:31:42', '2025-05-30 15:29:05', NULL);
INSERT INTO `t_app_stacker_info` (`stacker_id`, `plc_id`, `stacker_name`, `stacker_status`, `fork_status`, `allow_in`, `allow_out`, `allow_move`, `action_beat`, `read_status_address`, `write_task_address`, `task_confirm_address`, `task_status_address`, `create_time`, `update_time`, `remark`) VALUES (4, 1, '测试堆垛机', 1, '1', 1, 1, 1, '921', 'DB90.0', 'DB91.0', 'DB90.80', 'DB70.1', '2025-09-04 22:26:35', '2025-09-04 22:26:47', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_stacker_location
-- ----------------------------
DROP TABLE IF EXISTS `t_app_stacker_location`;
CREATE TABLE `t_app_stacker_location` (
`location_id` varchar(64) NOT NULL COMMENT '库位',
`location_status` int NOT NULL COMMENT '库位状态:\n0-空闲\n1-入库中\n2-出库中\n3-占用中\n9-禁用\n',
`business_location` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '业务库位',
`location_type` int NOT NULL COMMENT '库位类型',
`lane_id` int NOT NULL COMMENT '巷道',
`machine_id` int NOT NULL COMMENT '设备号',
`l_row` int NOT NULL COMMENT '',
`l_line` int NOT NULL COMMENT '',
`l_layer` int NOT NULL COMMENT '',
`l_depth` int NOT NULL COMMENT '',
`location_tag` varchar(64) DEFAULT NULL COMMENT '库位标记',
`vehicle_no` varchar(64) DEFAULT NULL COMMENT '容器编号',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_stacker_location
-- ----------------------------
BEGIN;
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-01-1', 0, 'A1-001-01-1', 0, 1, 1, 1, 2, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-01-2', 0, 'A1-001-01-2', 0, 1, 1, 1, 2, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-01-3', 0, 'A1-001-01-3', 0, 1, 1, 1, 2, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-02-1', 9, 'A1-001-02-1', 0, 1, 1, 1, 2, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-02-2', 0, 'A1-001-02-2', 0, 1, 1, 1, 2, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-02-3', 0, 'A1-001-02-3', 0, 1, 1, 1, 2, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-03-1', 0, 'A1-001-03-1', 0, 1, 1, 1, 2, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-03-2', 3, 'A1-001-03-2', 0, 1, 1, 1, 2, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-03-3', 0, 'A1-001-03-3', 0, 1, 1, 1, 2, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-04-1', 2, 'A1-001-04-1', 0, 1, 1, 1, 2, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-04-2', 0, 'A1-001-04-2', 0, 1, 1, 1, 2, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-04-3', 0, 'A1-001-04-3', 0, 1, 1, 1, 2, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-05-1', 0, 'A1-001-05-1', 0, 1, 1, 1, 2, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-05-2', 1, 'A1-001-05-2', 0, 1, 1, 1, 2, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-05-3', 0, 'A1-001-05-3', 0, 1, 1, 1, 2, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-06-1', 0, 'A1-001-06-1', 0, 1, 1, 1, 2, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-06-2', 0, 'A1-001-06-2', 0, 1, 1, 1, 2, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-001-06-3', 0, 'A1-001-06-3', 0, 1, 1, 1, 2, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-01-1', 0, 'A1-002-01-1', 0, 1, 1, 1, 3, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-01-2', 0, 'A1-002-01-2', 0, 1, 1, 1, 3, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-01-3', 0, 'A1-002-01-3', 0, 1, 1, 1, 3, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-02-1', 0, 'A1-002-02-1', 0, 1, 1, 1, 3, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-02-2', 0, 'A1-002-02-2', 0, 1, 1, 1, 3, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-02-3', 0, 'A1-002-02-3', 0, 1, 1, 1, 3, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-03-1', 0, 'A1-002-03-1', 0, 1, 1, 1, 3, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-03-2', 0, 'A1-002-03-2', 0, 1, 1, 1, 3, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-03-3', 0, 'A1-002-03-3', 0, 1, 1, 1, 3, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-04-1', 0, 'A1-002-04-1', 0, 1, 1, 1, 3, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-04-2', 0, 'A1-002-04-2', 0, 1, 1, 1, 3, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-04-3', 0, 'A1-002-04-3', 0, 1, 1, 1, 3, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-05-1', 0, 'A1-002-05-1', 0, 1, 1, 1, 3, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-05-2', 0, 'A1-002-05-2', 0, 1, 1, 1, 3, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-05-3', 0, 'A1-002-05-3', 0, 1, 1, 1, 3, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-06-1', 0, 'A1-002-06-1', 0, 1, 1, 1, 3, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-06-2', 0, 'A1-002-06-2', 0, 1, 1, 1, 3, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-002-06-3', 0, 'A1-002-06-3', 0, 1, 1, 1, 3, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-01-1', 0, 'A1-003-01-1', 0, 1, 1, 1, 4, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-01-2', 0, 'A1-003-01-2', 0, 1, 1, 1, 4, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-01-3', 0, 'A1-003-01-3', 0, 1, 1, 1, 4, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-02-1', 0, 'A1-003-02-1', 0, 1, 1, 1, 4, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-02-2', 0, 'A1-003-02-2', 0, 1, 1, 1, 4, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-02-3', 0, 'A1-003-02-3', 0, 1, 1, 1, 4, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-03-1', 0, 'A1-003-03-1', 0, 1, 1, 1, 4, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-03-2', 0, 'A1-003-03-2', 0, 1, 1, 1, 4, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-03-3', 0, 'A1-003-03-3', 0, 1, 1, 1, 4, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-04-1', 0, 'A1-003-04-1', 0, 1, 1, 1, 4, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-04-2', 0, 'A1-003-04-2', 0, 1, 1, 1, 4, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-04-3', 0, 'A1-003-04-3', 0, 1, 1, 1, 4, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-05-1', 0, 'A1-003-05-1', 0, 1, 1, 1, 4, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-05-2', 0, 'A1-003-05-2', 0, 1, 1, 1, 4, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-05-3', 0, 'A1-003-05-3', 0, 1, 1, 1, 4, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-06-1', 0, 'A1-003-06-1', 0, 1, 1, 1, 4, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-06-2', 0, 'A1-003-06-2', 0, 1, 1, 1, 4, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-003-06-3', 0, 'A1-003-06-3', 0, 1, 1, 1, 4, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-01-1', 0, 'A1-004-01-1', 0, 1, 1, 1, 5, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-01-2', 0, 'A1-004-01-2', 0, 1, 1, 1, 5, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-01-3', 0, 'A1-004-01-3', 0, 1, 1, 1, 5, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-02-1', 0, 'A1-004-02-1', 0, 1, 1, 1, 5, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-02-2', 0, 'A1-004-02-2', 0, 1, 1, 1, 5, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-02-3', 0, 'A1-004-02-3', 0, 1, 1, 1, 5, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-03-1', 0, 'A1-004-03-1', 0, 1, 1, 1, 5, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-03-2', 0, 'A1-004-03-2', 0, 1, 1, 1, 5, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-03-3', 0, 'A1-004-03-3', 0, 1, 1, 1, 5, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-04-1', 0, 'A1-004-04-1', 0, 1, 1, 1, 5, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-04-2', 0, 'A1-004-04-2', 0, 1, 1, 1, 5, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-04-3', 0, 'A1-004-04-3', 0, 1, 1, 1, 5, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-05-1', 0, 'A1-004-05-1', 0, 1, 1, 1, 5, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-05-2', 0, 'A1-004-05-2', 0, 1, 1, 1, 5, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-05-3', 0, 'A1-004-05-3', 0, 1, 1, 1, 5, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-06-1', 0, 'A1-004-06-1', 0, 1, 1, 1, 5, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-06-2', 0, 'A1-004-06-2', 0, 1, 1, 1, 5, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-004-06-3', 0, 'A1-004-06-3', 0, 1, 1, 1, 5, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-01-1', 0, 'A1-005-01-1', 0, 1, 1, 1, 6, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-01-2', 0, 'A1-005-01-2', 0, 1, 1, 1, 6, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-01-3', 0, 'A1-005-01-3', 0, 1, 1, 1, 6, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-02-1', 0, 'A1-005-02-1', 0, 1, 1, 1, 6, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-02-2', 0, 'A1-005-02-2', 0, 1, 1, 1, 6, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-02-3', 0, 'A1-005-02-3', 0, 1, 1, 1, 6, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-03-1', 0, 'A1-005-03-1', 0, 1, 1, 1, 6, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-03-2', 0, 'A1-005-03-2', 0, 1, 1, 1, 6, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-03-3', 0, 'A1-005-03-3', 0, 1, 1, 1, 6, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-04-1', 0, 'A1-005-04-1', 0, 1, 1, 1, 6, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-04-2', 0, 'A1-005-04-2', 0, 1, 1, 1, 6, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-04-3', 0, 'A1-005-04-3', 0, 1, 1, 1, 6, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-05-1', 0, 'A1-005-05-1', 0, 1, 1, 1, 6, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-05-2', 0, 'A1-005-05-2', 0, 1, 1, 1, 6, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-05-3', 0, 'A1-005-05-3', 0, 1, 1, 1, 6, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-06-1', 0, 'A1-005-06-1', 0, 1, 1, 1, 6, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-06-2', 0, 'A1-005-06-2', 0, 1, 1, 1, 6, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-005-06-3', 0, 'A1-005-06-3', 0, 1, 1, 1, 6, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-01-1', 0, 'A1-006-01-1', 0, 1, 1, 1, 7, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-01-2', 0, 'A1-006-01-2', 0, 1, 1, 1, 7, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-01-3', 0, 'A1-006-01-3', 0, 1, 1, 1, 7, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-02-1', 0, 'A1-006-02-1', 0, 1, 1, 1, 7, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-02-2', 0, 'A1-006-02-2', 0, 1, 1, 1, 7, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-02-3', 0, 'A1-006-02-3', 0, 1, 1, 1, 7, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-03-1', 0, 'A1-006-03-1', 0, 1, 1, 1, 7, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-03-2', 0, 'A1-006-03-2', 0, 1, 1, 1, 7, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-03-3', 0, 'A1-006-03-3', 0, 1, 1, 1, 7, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-04-1', 0, 'A1-006-04-1', 0, 1, 1, 1, 7, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-04-2', 0, 'A1-006-04-2', 0, 1, 1, 1, 7, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-04-3', 0, 'A1-006-04-3', 0, 1, 1, 1, 7, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-05-1', 0, 'A1-006-05-1', 0, 1, 1, 1, 7, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-05-2', 0, 'A1-006-05-2', 0, 1, 1, 1, 7, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-05-3', 0, 'A1-006-05-3', 0, 1, 1, 1, 7, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-06-1', 0, 'A1-006-06-1', 0, 1, 1, 1, 7, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-06-2', 0, 'A1-006-06-2', 0, 1, 1, 1, 7, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-006-06-3', 0, 'A1-006-06-3', 0, 1, 1, 1, 7, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-01-1', 0, 'A1-007-01-1', 0, 1, 1, 1, 8, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-01-2', 0, 'A1-007-01-2', 0, 1, 1, 1, 8, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-01-3', 0, 'A1-007-01-3', 0, 1, 1, 1, 8, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-02-1', 0, 'A1-007-02-1', 0, 1, 1, 1, 8, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-02-2', 0, 'A1-007-02-2', 0, 1, 1, 1, 8, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-02-3', 0, 'A1-007-02-3', 0, 1, 1, 1, 8, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-03-1', 0, 'A1-007-03-1', 0, 1, 1, 1, 8, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-03-2', 0, 'A1-007-03-2', 0, 1, 1, 1, 8, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-03-3', 0, 'A1-007-03-3', 0, 1, 1, 1, 8, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-04-1', 0, 'A1-007-04-1', 0, 1, 1, 1, 8, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-04-2', 0, 'A1-007-04-2', 0, 1, 1, 1, 8, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-04-3', 0, 'A1-007-04-3', 0, 1, 1, 1, 8, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-05-1', 0, 'A1-007-05-1', 0, 1, 1, 1, 8, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-05-2', 0, 'A1-007-05-2', 0, 1, 1, 1, 8, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-05-3', 0, 'A1-007-05-3', 0, 1, 1, 1, 8, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-06-1', 0, 'A1-007-06-1', 0, 1, 1, 1, 8, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-06-2', 0, 'A1-007-06-2', 0, 1, 1, 1, 8, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-007-06-3', 0, 'A1-007-06-3', 0, 1, 1, 1, 8, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-01-1', 0, 'A1-008-01-1', 0, 1, 1, 1, 9, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-01-2', 0, 'A1-008-01-2', 0, 1, 1, 1, 9, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-01-3', 0, 'A1-008-01-3', 0, 1, 1, 1, 9, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-02-1', 0, 'A1-008-02-1', 0, 1, 1, 1, 9, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-02-2', 0, 'A1-008-02-2', 0, 1, 1, 1, 9, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-02-3', 0, 'A1-008-02-3', 0, 1, 1, 1, 9, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-03-1', 0, 'A1-008-03-1', 0, 1, 1, 1, 9, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-03-2', 0, 'A1-008-03-2', 0, 1, 1, 1, 9, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-03-3', 0, 'A1-008-03-3', 0, 1, 1, 1, 9, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-04-1', 0, 'A1-008-04-1', 0, 1, 1, 1, 9, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-04-2', 0, 'A1-008-04-2', 0, 1, 1, 1, 9, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-04-3', 0, 'A1-008-04-3', 0, 1, 1, 1, 9, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-05-1', 0, 'A1-008-05-1', 0, 1, 1, 1, 9, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-05-2', 0, 'A1-008-05-2', 0, 1, 1, 1, 9, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-05-3', 0, 'A1-008-05-3', 0, 1, 1, 1, 9, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-06-1', 0, 'A1-008-06-1', 0, 1, 1, 1, 9, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-06-2', 0, 'A1-008-06-2', 0, 1, 1, 1, 9, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-008-06-3', 0, 'A1-008-06-3', 0, 1, 1, 1, 9, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-01-1', 0, 'A1-009-01-1', 0, 1, 1, 1, 10, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-01-2', 0, 'A1-009-01-2', 0, 1, 1, 1, 10, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-01-3', 0, 'A1-009-01-3', 0, 1, 1, 1, 10, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-02-1', 0, 'A1-009-02-1', 0, 1, 1, 1, 10, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-02-2', 0, 'A1-009-02-2', 0, 1, 1, 1, 10, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-02-3', 0, 'A1-009-02-3', 0, 1, 1, 1, 10, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-03-1', 0, 'A1-009-03-1', 0, 1, 1, 1, 10, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-03-2', 0, 'A1-009-03-2', 0, 1, 1, 1, 10, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-03-3', 0, 'A1-009-03-3', 0, 1, 1, 1, 10, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-04-1', 0, 'A1-009-04-1', 0, 1, 1, 1, 10, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-04-2', 0, 'A1-009-04-2', 0, 1, 1, 1, 10, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-04-3', 0, 'A1-009-04-3', 0, 1, 1, 1, 10, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-05-1', 0, 'A1-009-05-1', 0, 1, 1, 1, 10, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-05-2', 9, 'A1-009-05-2', 0, 1, 1, 1, 10, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-05-3', 0, 'A1-009-05-3', 0, 1, 1, 1, 10, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-06-1', 0, 'A1-009-06-1', 0, 1, 1, 1, 10, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-06-2', 0, 'A1-009-06-2', 0, 1, 1, 1, 10, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-009-06-3', 0, 'A1-009-06-3', 0, 1, 1, 1, 10, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-01-1', 0, 'A1-010-01-1', 0, 1, 1, 1, 11, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-01-2', 0, 'A1-010-01-2', 0, 1, 1, 1, 11, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-01-3', 0, 'A1-010-01-3', 0, 1, 1, 1, 11, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-02-1', 0, 'A1-010-02-1', 0, 1, 1, 1, 11, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-02-2', 0, 'A1-010-02-2', 0, 1, 1, 1, 11, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-02-3', 0, 'A1-010-02-3', 0, 1, 1, 1, 11, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-03-1', 0, 'A1-010-03-1', 0, 1, 1, 1, 11, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-03-2', 0, 'A1-010-03-2', 0, 1, 1, 1, 11, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-03-3', 0, 'A1-010-03-3', 0, 1, 1, 1, 11, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-04-1', 0, 'A1-010-04-1', 0, 1, 1, 1, 11, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-04-2', 0, 'A1-010-04-2', 0, 1, 1, 1, 11, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-04-3', 0, 'A1-010-04-3', 0, 1, 1, 1, 11, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-05-1', 0, 'A1-010-05-1', 0, 1, 1, 1, 11, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-05-2', 0, 'A1-010-05-2', 0, 1, 1, 1, 11, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-05-3', 0, 'A1-010-05-3', 0, 1, 1, 1, 11, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-06-1', 9, 'A1-010-06-1', 0, 1, 1, 1, 11, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-06-2', 0, 'A1-010-06-2', 0, 1, 1, 1, 11, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-010-06-3', 0, 'A1-010-06-3', 0, 1, 1, 1, 11, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-01-1', 0, 'A1-011-01-1', 0, 1, 1, 1, 12, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-01-2', 0, 'A1-011-01-2', 0, 1, 1, 1, 12, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-01-3', 0, 'A1-011-01-3', 0, 1, 1, 1, 12, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-02-1', 0, 'A1-011-02-1', 0, 1, 1, 1, 12, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-02-2', 0, 'A1-011-02-2', 0, 1, 1, 1, 12, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-02-3', 0, 'A1-011-02-3', 0, 1, 1, 1, 12, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-03-1', 0, 'A1-011-03-1', 0, 1, 1, 1, 12, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-03-2', 0, 'A1-011-03-2', 0, 1, 1, 1, 12, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-03-3', 0, 'A1-011-03-3', 0, 1, 1, 1, 12, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-04-1', 0, 'A1-011-04-1', 0, 1, 1, 1, 12, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-04-2', 0, 'A1-011-04-2', 0, 1, 1, 1, 12, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-04-3', 0, 'A1-011-04-3', 0, 1, 1, 1, 12, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-05-1', 0, 'A1-011-05-1', 0, 1, 1, 1, 12, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-05-2', 0, 'A1-011-05-2', 0, 1, 1, 1, 12, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-05-3', 0, 'A1-011-05-3', 0, 1, 1, 1, 12, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-06-1', 0, 'A1-011-06-1', 0, 1, 1, 1, 12, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-06-2', 0, 'A1-011-06-2', 0, 1, 1, 1, 12, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-011-06-3', 0, 'A1-011-06-3', 0, 1, 1, 1, 12, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-01-1', 0, 'A1-012-01-1', 0, 1, 1, 1, 13, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-01-2', 0, 'A1-012-01-2', 0, 1, 1, 1, 13, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-01-3', 0, 'A1-012-01-3', 0, 1, 1, 1, 13, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-02-1', 0, 'A1-012-02-1', 0, 1, 1, 1, 13, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-02-2', 0, 'A1-012-02-2', 0, 1, 1, 1, 13, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-02-3', 0, 'A1-012-02-3', 0, 1, 1, 1, 13, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-03-1', 0, 'A1-012-03-1', 0, 1, 1, 1, 13, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-03-2', 0, 'A1-012-03-2', 0, 1, 1, 1, 13, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-03-3', 0, 'A1-012-03-3', 0, 1, 1, 1, 13, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-04-1', 0, 'A1-012-04-1', 0, 1, 1, 1, 13, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-04-2', 0, 'A1-012-04-2', 0, 1, 1, 1, 13, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-04-3', 0, 'A1-012-04-3', 0, 1, 1, 1, 13, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-05-1', 0, 'A1-012-05-1', 0, 1, 1, 1, 13, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-05-2', 0, 'A1-012-05-2', 0, 1, 1, 1, 13, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-05-3', 0, 'A1-012-05-3', 0, 1, 1, 1, 13, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-06-1', 0, 'A1-012-06-1', 0, 1, 1, 1, 13, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-06-2', 0, 'A1-012-06-2', 0, 1, 1, 1, 13, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-012-06-3', 0, 'A1-012-06-3', 0, 1, 1, 1, 13, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-01-1', 0, 'A1-013-01-1', 0, 1, 1, 1, 14, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-01-2', 0, 'A1-013-01-2', 0, 1, 1, 1, 14, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-01-3', 0, 'A1-013-01-3', 0, 1, 1, 1, 14, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-02-1', 0, 'A1-013-02-1', 0, 1, 1, 1, 14, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-02-2', 0, 'A1-013-02-2', 0, 1, 1, 1, 14, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-02-3', 0, 'A1-013-02-3', 0, 1, 1, 1, 14, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-03-1', 0, 'A1-013-03-1', 0, 1, 1, 1, 14, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-03-2', 0, 'A1-013-03-2', 0, 1, 1, 1, 14, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-03-3', 0, 'A1-013-03-3', 0, 1, 1, 1, 14, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-04-1', 0, 'A1-013-04-1', 0, 1, 1, 1, 14, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-04-2', 0, 'A1-013-04-2', 0, 1, 1, 1, 14, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-04-3', 0, 'A1-013-04-3', 0, 1, 1, 1, 14, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-05-1', 0, 'A1-013-05-1', 0, 1, 1, 1, 14, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-05-2', 0, 'A1-013-05-2', 0, 1, 1, 1, 14, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-05-3', 0, 'A1-013-05-3', 0, 1, 1, 1, 14, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-06-1', 0, 'A1-013-06-1', 0, 1, 1, 1, 14, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-06-2', 0, 'A1-013-06-2', 0, 1, 1, 1, 14, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-013-06-3', 0, 'A1-013-06-3', 0, 1, 1, 1, 14, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-01-1', 0, 'A1-014-01-1', 0, 1, 1, 1, 15, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-01-2', 0, 'A1-014-01-2', 0, 1, 1, 1, 15, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-01-3', 0, 'A1-014-01-3', 0, 1, 1, 1, 15, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-02-1', 0, 'A1-014-02-1', 0, 1, 1, 1, 15, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-02-2', 0, 'A1-014-02-2', 0, 1, 1, 1, 15, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-02-3', 0, 'A1-014-02-3', 0, 1, 1, 1, 15, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-03-1', 0, 'A1-014-03-1', 0, 1, 1, 1, 15, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-03-2', 0, 'A1-014-03-2', 0, 1, 1, 1, 15, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-03-3', 0, 'A1-014-03-3', 0, 1, 1, 1, 15, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-04-1', 0, 'A1-014-04-1', 0, 1, 1, 1, 15, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-04-2', 0, 'A1-014-04-2', 0, 1, 1, 1, 15, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-04-3', 0, 'A1-014-04-3', 0, 1, 1, 1, 15, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-05-1', 0, 'A1-014-05-1', 0, 1, 1, 1, 15, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-05-2', 0, 'A1-014-05-2', 0, 1, 1, 1, 15, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-05-3', 0, 'A1-014-05-3', 0, 1, 1, 1, 15, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-06-1', 0, 'A1-014-06-1', 0, 1, 1, 1, 15, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-06-2', 0, 'A1-014-06-2', 0, 1, 1, 1, 15, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-014-06-3', 0, 'A1-014-06-3', 0, 1, 1, 1, 15, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-01-1', 0, 'A1-015-01-1', 0, 1, 1, 1, 16, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-01-2', 0, 'A1-015-01-2', 0, 1, 1, 1, 16, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-01-3', 0, 'A1-015-01-3', 0, 1, 1, 1, 16, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-02-1', 0, 'A1-015-02-1', 0, 1, 1, 1, 16, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-02-2', 0, 'A1-015-02-2', 0, 1, 1, 1, 16, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-02-3', 0, 'A1-015-02-3', 0, 1, 1, 1, 16, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-03-1', 0, 'A1-015-03-1', 0, 1, 1, 1, 16, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-03-2', 0, 'A1-015-03-2', 0, 1, 1, 1, 16, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-03-3', 0, 'A1-015-03-3', 0, 1, 1, 1, 16, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-04-1', 0, 'A1-015-04-1', 0, 1, 1, 1, 16, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-04-2', 0, 'A1-015-04-2', 0, 1, 1, 1, 16, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-04-3', 0, 'A1-015-04-3', 0, 1, 1, 1, 16, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-05-1', 0, 'A1-015-05-1', 0, 1, 1, 1, 16, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-05-2', 0, 'A1-015-05-2', 0, 1, 1, 1, 16, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-05-3', 0, 'A1-015-05-3', 0, 1, 1, 1, 16, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-06-1', 0, 'A1-015-06-1', 0, 1, 1, 1, 16, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-06-2', 0, 'A1-015-06-2', 0, 1, 1, 1, 16, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-015-06-3', 0, 'A1-015-06-3', 0, 1, 1, 1, 16, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-01-1', 0, 'A1-016-01-1', 0, 1, 1, 1, 17, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-01-2', 0, 'A1-016-01-2', 0, 1, 1, 1, 17, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-01-3', 0, 'A1-016-01-3', 0, 1, 1, 1, 17, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-02-1', 0, 'A1-016-02-1', 0, 1, 1, 1, 17, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-02-2', 0, 'A1-016-02-2', 0, 1, 1, 1, 17, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-02-3', 0, 'A1-016-02-3', 0, 1, 1, 1, 17, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-03-1', 0, 'A1-016-03-1', 0, 1, 1, 1, 17, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-03-2', 0, 'A1-016-03-2', 0, 1, 1, 1, 17, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-03-3', 0, 'A1-016-03-3', 0, 1, 1, 1, 17, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-04-1', 0, 'A1-016-04-1', 0, 1, 1, 1, 17, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-04-2', 0, 'A1-016-04-2', 0, 1, 1, 1, 17, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-04-3', 0, 'A1-016-04-3', 0, 1, 1, 1, 17, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-05-1', 0, 'A1-016-05-1', 0, 1, 1, 1, 17, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-05-2', 0, 'A1-016-05-2', 0, 1, 1, 1, 17, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-05-3', 0, 'A1-016-05-3', 0, 1, 1, 1, 17, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-06-1', 0, 'A1-016-06-1', 0, 1, 1, 1, 17, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-06-2', 0, 'A1-016-06-2', 0, 1, 1, 1, 17, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-016-06-3', 0, 'A1-016-06-3', 0, 1, 1, 1, 17, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-01-1', 0, 'A1-017-01-1', 0, 1, 1, 1, 18, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-01-2', 0, 'A1-017-01-2', 0, 1, 1, 1, 18, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-01-3', 0, 'A1-017-01-3', 0, 1, 1, 1, 18, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-02-1', 0, 'A1-017-02-1', 0, 1, 1, 1, 18, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-02-2', 0, 'A1-017-02-2', 0, 1, 1, 1, 18, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-02-3', 0, 'A1-017-02-3', 0, 1, 1, 1, 18, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-03-1', 0, 'A1-017-03-1', 0, 1, 1, 1, 18, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-03-2', 0, 'A1-017-03-2', 0, 1, 1, 1, 18, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-03-3', 0, 'A1-017-03-3', 0, 1, 1, 1, 18, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-04-1', 0, 'A1-017-04-1', 0, 1, 1, 1, 18, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-04-2', 0, 'A1-017-04-2', 0, 1, 1, 1, 18, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-04-3', 0, 'A1-017-04-3', 0, 1, 1, 1, 18, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-05-1', 0, 'A1-017-05-1', 0, 1, 1, 1, 18, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-05-2', 0, 'A1-017-05-2', 0, 1, 1, 1, 18, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-05-3', 0, 'A1-017-05-3', 0, 1, 1, 1, 18, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-06-1', 0, 'A1-017-06-1', 0, 1, 1, 1, 18, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-06-2', 0, 'A1-017-06-2', 0, 1, 1, 1, 18, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-017-06-3', 0, 'A1-017-06-3', 0, 1, 1, 1, 18, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-01-1', 0, 'A1-018-01-1', 0, 1, 1, 1, 19, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-01-2', 0, 'A1-018-01-2', 0, 1, 1, 1, 19, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-01-3', 0, 'A1-018-01-3', 0, 1, 1, 1, 19, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-02-1', 0, 'A1-018-02-1', 0, 1, 1, 1, 19, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-02-2', 0, 'A1-018-02-2', 0, 1, 1, 1, 19, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-02-3', 0, 'A1-018-02-3', 0, 1, 1, 1, 19, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-03-1', 0, 'A1-018-03-1', 0, 1, 1, 1, 19, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-03-2', 0, 'A1-018-03-2', 0, 1, 1, 1, 19, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-03-3', 0, 'A1-018-03-3', 0, 1, 1, 1, 19, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-04-1', 0, 'A1-018-04-1', 0, 1, 1, 1, 19, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-04-2', 0, 'A1-018-04-2', 0, 1, 1, 1, 19, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-04-3', 0, 'A1-018-04-3', 0, 1, 1, 1, 19, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-05-1', 0, 'A1-018-05-1', 0, 1, 1, 1, 19, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-05-2', 0, 'A1-018-05-2', 0, 1, 1, 1, 19, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-05-3', 0, 'A1-018-05-3', 0, 1, 1, 1, 19, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-06-1', 0, 'A1-018-06-1', 0, 1, 1, 1, 19, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-06-2', 0, 'A1-018-06-2', 0, 1, 1, 1, 19, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-018-06-3', 0, 'A1-018-06-3', 0, 1, 1, 1, 19, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-01-1', 0, 'A1-019-01-1', 0, 1, 1, 1, 20, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-01-2', 0, 'A1-019-01-2', 0, 1, 1, 1, 20, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-01-3', 0, 'A1-019-01-3', 0, 1, 1, 1, 20, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-02-1', 0, 'A1-019-02-1', 0, 1, 1, 1, 20, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-02-2', 0, 'A1-019-02-2', 0, 1, 1, 1, 20, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-02-3', 0, 'A1-019-02-3', 0, 1, 1, 1, 20, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-03-1', 0, 'A1-019-03-1', 0, 1, 1, 1, 20, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-03-2', 0, 'A1-019-03-2', 0, 1, 1, 1, 20, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-03-3', 0, 'A1-019-03-3', 0, 1, 1, 1, 20, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-04-1', 0, 'A1-019-04-1', 0, 1, 1, 1, 20, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-04-2', 0, 'A1-019-04-2', 0, 1, 1, 1, 20, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-04-3', 0, 'A1-019-04-3', 0, 1, 1, 1, 20, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-05-1', 0, 'A1-019-05-1', 0, 1, 1, 1, 20, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-05-2', 0, 'A1-019-05-2', 0, 1, 1, 1, 20, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-05-3', 0, 'A1-019-05-3', 0, 1, 1, 1, 20, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-06-1', 0, 'A1-019-06-1', 0, 1, 1, 1, 20, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-06-2', 0, 'A1-019-06-2', 0, 1, 1, 1, 20, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-019-06-3', 0, 'A1-019-06-3', 0, 1, 1, 1, 20, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-01-1', 0, 'A1-020-01-1', 0, 1, 1, 1, 21, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-01-2', 0, 'A1-020-01-2', 0, 1, 1, 1, 21, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-01-3', 0, 'A1-020-01-3', 0, 1, 1, 1, 21, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-02-1', 0, 'A1-020-02-1', 0, 1, 1, 1, 21, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-02-2', 0, 'A1-020-02-2', 0, 1, 1, 1, 21, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-02-3', 0, 'A1-020-02-3', 0, 1, 1, 1, 21, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-03-1', 0, 'A1-020-03-1', 0, 1, 1, 1, 21, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-03-2', 0, 'A1-020-03-2', 0, 1, 1, 1, 21, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-03-3', 0, 'A1-020-03-3', 0, 1, 1, 1, 21, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-04-1', 0, 'A1-020-04-1', 0, 1, 1, 1, 21, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-04-2', 0, 'A1-020-04-2', 0, 1, 1, 1, 21, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-04-3', 0, 'A1-020-04-3', 0, 1, 1, 1, 21, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-05-1', 0, 'A1-020-05-1', 0, 1, 1, 1, 21, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-05-2', 0, 'A1-020-05-2', 0, 1, 1, 1, 21, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-05-3', 0, 'A1-020-05-3', 0, 1, 1, 1, 21, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-06-1', 0, 'A1-020-06-1', 0, 1, 1, 1, 21, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-06-2', 0, 'A1-020-06-2', 0, 1, 1, 1, 21, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-020-06-3', 0, 'A1-020-06-3', 0, 1, 1, 1, 21, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-01-1', 0, 'A1-021-01-1', 0, 1, 1, 1, 22, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-01-2', 0, 'A1-021-01-2', 0, 1, 1, 1, 22, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-01-3', 0, 'A1-021-01-3', 0, 1, 1, 1, 22, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-02-1', 0, 'A1-021-02-1', 0, 1, 1, 1, 22, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-02-2', 0, 'A1-021-02-2', 0, 1, 1, 1, 22, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-02-3', 0, 'A1-021-02-3', 0, 1, 1, 1, 22, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-03-1', 0, 'A1-021-03-1', 0, 1, 1, 1, 22, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-03-2', 0, 'A1-021-03-2', 0, 1, 1, 1, 22, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-03-3', 0, 'A1-021-03-3', 0, 1, 1, 1, 22, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-04-1', 0, 'A1-021-04-1', 0, 1, 1, 1, 22, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-04-2', 0, 'A1-021-04-2', 0, 1, 1, 1, 22, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-04-3', 0, 'A1-021-04-3', 0, 1, 1, 1, 22, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-05-1', 0, 'A1-021-05-1', 0, 1, 1, 1, 22, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-05-2', 0, 'A1-021-05-2', 0, 1, 1, 1, 22, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-05-3', 0, 'A1-021-05-3', 0, 1, 1, 1, 22, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-06-1', 0, 'A1-021-06-1', 0, 1, 1, 1, 22, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-06-2', 0, 'A1-021-06-2', 0, 1, 1, 1, 22, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-021-06-3', 0, 'A1-021-06-3', 0, 1, 1, 1, 22, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-01-1', 0, 'A1-022-01-1', 0, 1, 1, 1, 23, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-01-2', 0, 'A1-022-01-2', 0, 1, 1, 1, 23, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-01-3', 0, 'A1-022-01-3', 0, 1, 1, 1, 23, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-02-1', 0, 'A1-022-02-1', 0, 1, 1, 1, 23, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-02-2', 0, 'A1-022-02-2', 0, 1, 1, 1, 23, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-02-3', 0, 'A1-022-02-3', 0, 1, 1, 1, 23, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-03-1', 0, 'A1-022-03-1', 0, 1, 1, 1, 23, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-03-2', 0, 'A1-022-03-2', 0, 1, 1, 1, 23, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-03-3', 0, 'A1-022-03-3', 0, 1, 1, 1, 23, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-04-1', 0, 'A1-022-04-1', 0, 1, 1, 1, 23, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-04-2', 0, 'A1-022-04-2', 0, 1, 1, 1, 23, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-04-3', 0, 'A1-022-04-3', 0, 1, 1, 1, 23, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-05-1', 0, 'A1-022-05-1', 0, 1, 1, 1, 23, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-05-2', 0, 'A1-022-05-2', 0, 1, 1, 1, 23, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-05-3', 0, 'A1-022-05-3', 0, 1, 1, 1, 23, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-06-1', 0, 'A1-022-06-1', 0, 1, 1, 1, 23, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-06-2', 0, 'A1-022-06-2', 0, 1, 1, 1, 23, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-022-06-3', 0, 'A1-022-06-3', 0, 1, 1, 1, 23, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-01-1', 0, 'A1-023-01-1', 0, 1, 1, 1, 24, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-01-2', 0, 'A1-023-01-2', 0, 1, 1, 1, 24, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-01-3', 0, 'A1-023-01-3', 0, 1, 1, 1, 24, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-02-1', 0, 'A1-023-02-1', 0, 1, 1, 1, 24, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-02-2', 0, 'A1-023-02-2', 0, 1, 1, 1, 24, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-02-3', 0, 'A1-023-02-3', 0, 1, 1, 1, 24, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-03-1', 0, 'A1-023-03-1', 0, 1, 1, 1, 24, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-03-2', 0, 'A1-023-03-2', 0, 1, 1, 1, 24, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-03-3', 0, 'A1-023-03-3', 0, 1, 1, 1, 24, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-04-1', 0, 'A1-023-04-1', 0, 1, 1, 1, 24, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-04-2', 0, 'A1-023-04-2', 0, 1, 1, 1, 24, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-04-3', 0, 'A1-023-04-3', 0, 1, 1, 1, 24, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-05-1', 0, 'A1-023-05-1', 0, 1, 1, 1, 24, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-05-2', 0, 'A1-023-05-2', 0, 1, 1, 1, 24, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-05-3', 0, 'A1-023-05-3', 0, 1, 1, 1, 24, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-06-1', 0, 'A1-023-06-1', 0, 1, 1, 1, 24, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-06-2', 0, 'A1-023-06-2', 0, 1, 1, 1, 24, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-023-06-3', 0, 'A1-023-06-3', 0, 1, 1, 1, 24, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-01-1', 0, 'A1-024-01-1', 0, 1, 1, 1, 25, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-01-2', 0, 'A1-024-01-2', 0, 1, 1, 1, 25, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-01-3', 0, 'A1-024-01-3', 0, 1, 1, 1, 25, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-02-1', 0, 'A1-024-02-1', 0, 1, 1, 1, 25, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-02-2', 0, 'A1-024-02-2', 0, 1, 1, 1, 25, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-02-3', 0, 'A1-024-02-3', 0, 1, 1, 1, 25, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-03-1', 0, 'A1-024-03-1', 0, 1, 1, 1, 25, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-03-2', 0, 'A1-024-03-2', 0, 1, 1, 1, 25, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-03-3', 0, 'A1-024-03-3', 0, 1, 1, 1, 25, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-04-1', 0, 'A1-024-04-1', 0, 1, 1, 1, 25, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-04-2', 0, 'A1-024-04-2', 0, 1, 1, 1, 25, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-04-3', 0, 'A1-024-04-3', 0, 1, 1, 1, 25, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-05-1', 0, 'A1-024-05-1', 0, 1, 1, 1, 25, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-05-2', 0, 'A1-024-05-2', 0, 1, 1, 1, 25, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-05-3', 0, 'A1-024-05-3', 0, 1, 1, 1, 25, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-06-1', 0, 'A1-024-06-1', 0, 1, 1, 1, 25, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-06-2', 0, 'A1-024-06-2', 0, 1, 1, 1, 25, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-024-06-3', 0, 'A1-024-06-3', 0, 1, 1, 1, 25, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-01-1', 0, 'A1-025-01-1', 0, 1, 1, 1, 26, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-01-2', 0, 'A1-025-01-2', 0, 1, 1, 1, 26, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-01-3', 0, 'A1-025-01-3', 0, 1, 1, 1, 26, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-02-1', 0, 'A1-025-02-1', 0, 1, 1, 1, 26, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-02-2', 0, 'A1-025-02-2', 0, 1, 1, 1, 26, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-02-3', 0, 'A1-025-02-3', 0, 1, 1, 1, 26, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-03-1', 0, 'A1-025-03-1', 0, 1, 1, 1, 26, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-03-2', 0, 'A1-025-03-2', 0, 1, 1, 1, 26, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-03-3', 0, 'A1-025-03-3', 0, 1, 1, 1, 26, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-04-1', 0, 'A1-025-04-1', 0, 1, 1, 1, 26, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-04-2', 0, 'A1-025-04-2', 0, 1, 1, 1, 26, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-04-3', 0, 'A1-025-04-3', 0, 1, 1, 1, 26, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-05-1', 0, 'A1-025-05-1', 0, 1, 1, 1, 26, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-05-2', 0, 'A1-025-05-2', 0, 1, 1, 1, 26, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-05-3', 0, 'A1-025-05-3', 0, 1, 1, 1, 26, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-06-1', 0, 'A1-025-06-1', 0, 1, 1, 1, 26, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-06-2', 0, 'A1-025-06-2', 0, 1, 1, 1, 26, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-025-06-3', 0, 'A1-025-06-3', 0, 1, 1, 1, 26, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-01-1', 0, 'A1-026-01-1', 0, 1, 1, 1, 27, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-01-2', 0, 'A1-026-01-2', 0, 1, 1, 1, 27, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-01-3', 0, 'A1-026-01-3', 0, 1, 1, 1, 27, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-02-1', 0, 'A1-026-02-1', 0, 1, 1, 1, 27, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-02-2', 0, 'A1-026-02-2', 0, 1, 1, 1, 27, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-02-3', 0, 'A1-026-02-3', 0, 1, 1, 1, 27, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-03-1', 0, 'A1-026-03-1', 0, 1, 1, 1, 27, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-03-2', 0, 'A1-026-03-2', 0, 1, 1, 1, 27, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-03-3', 0, 'A1-026-03-3', 0, 1, 1, 1, 27, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-04-1', 0, 'A1-026-04-1', 0, 1, 1, 1, 27, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-04-2', 0, 'A1-026-04-2', 0, 1, 1, 1, 27, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-04-3', 0, 'A1-026-04-3', 0, 1, 1, 1, 27, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-05-1', 0, 'A1-026-05-1', 0, 1, 1, 1, 27, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-05-2', 0, 'A1-026-05-2', 0, 1, 1, 1, 27, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-05-3', 0, 'A1-026-05-3', 0, 1, 1, 1, 27, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-06-1', 0, 'A1-026-06-1', 0, 1, 1, 1, 27, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-06-2', 0, 'A1-026-06-2', 0, 1, 1, 1, 27, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-026-06-3', 0, 'A1-026-06-3', 0, 1, 1, 1, 27, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-01-1', 0, 'A1-027-01-1', 0, 1, 1, 1, 28, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-01-2', 0, 'A1-027-01-2', 0, 1, 1, 1, 28, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-01-3', 0, 'A1-027-01-3', 0, 1, 1, 1, 28, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-02-1', 0, 'A1-027-02-1', 0, 1, 1, 1, 28, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-02-2', 0, 'A1-027-02-2', 0, 1, 1, 1, 28, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-02-3', 0, 'A1-027-02-3', 0, 1, 1, 1, 28, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-03-1', 0, 'A1-027-03-1', 0, 1, 1, 1, 28, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-03-2', 0, 'A1-027-03-2', 0, 1, 1, 1, 28, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-03-3', 0, 'A1-027-03-3', 0, 1, 1, 1, 28, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-04-1', 0, 'A1-027-04-1', 0, 1, 1, 1, 28, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-04-2', 0, 'A1-027-04-2', 0, 1, 1, 1, 28, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-04-3', 0, 'A1-027-04-3', 0, 1, 1, 1, 28, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-05-1', 0, 'A1-027-05-1', 0, 1, 1, 1, 28, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-05-2', 0, 'A1-027-05-2', 0, 1, 1, 1, 28, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-05-3', 0, 'A1-027-05-3', 0, 1, 1, 1, 28, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-06-1', 0, 'A1-027-06-1', 0, 1, 1, 1, 28, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-06-2', 0, 'A1-027-06-2', 0, 1, 1, 1, 28, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-027-06-3', 0, 'A1-027-06-3', 0, 1, 1, 1, 28, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-01-1', 0, 'A1-028-01-1', 0, 1, 1, 1, 29, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-01-2', 0, 'A1-028-01-2', 0, 1, 1, 1, 29, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-01-3', 0, 'A1-028-01-3', 0, 1, 1, 1, 29, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-02-1', 0, 'A1-028-02-1', 0, 1, 1, 1, 29, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-02-2', 0, 'A1-028-02-2', 0, 1, 1, 1, 29, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-02-3', 0, 'A1-028-02-3', 0, 1, 1, 1, 29, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-03-1', 0, 'A1-028-03-1', 0, 1, 1, 1, 29, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-03-2', 0, 'A1-028-03-2', 0, 1, 1, 1, 29, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-03-3', 0, 'A1-028-03-3', 0, 1, 1, 1, 29, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-04-1', 0, 'A1-028-04-1', 0, 1, 1, 1, 29, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-04-2', 0, 'A1-028-04-2', 0, 1, 1, 1, 29, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-04-3', 0, 'A1-028-04-3', 0, 1, 1, 1, 29, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-05-1', 0, 'A1-028-05-1', 0, 1, 1, 1, 29, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-05-2', 0, 'A1-028-05-2', 0, 1, 1, 1, 29, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-05-3', 0, 'A1-028-05-3', 0, 1, 1, 1, 29, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-06-1', 0, 'A1-028-06-1', 0, 1, 1, 1, 29, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-06-2', 0, 'A1-028-06-2', 0, 1, 1, 1, 29, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-028-06-3', 0, 'A1-028-06-3', 0, 1, 1, 1, 29, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-01-1', 0, 'A1-029-01-1', 0, 1, 1, 1, 30, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-01-2', 0, 'A1-029-01-2', 0, 1, 1, 1, 30, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-01-3', 0, 'A1-029-01-3', 0, 1, 1, 1, 30, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-02-1', 0, 'A1-029-02-1', 0, 1, 1, 1, 30, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-02-2', 0, 'A1-029-02-2', 0, 1, 1, 1, 30, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-02-3', 0, 'A1-029-02-3', 0, 1, 1, 1, 30, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-03-1', 0, 'A1-029-03-1', 0, 1, 1, 1, 30, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-03-2', 0, 'A1-029-03-2', 0, 1, 1, 1, 30, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-03-3', 0, 'A1-029-03-3', 0, 1, 1, 1, 30, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-04-1', 0, 'A1-029-04-1', 0, 1, 1, 1, 30, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-04-2', 0, 'A1-029-04-2', 0, 1, 1, 1, 30, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-04-3', 0, 'A1-029-04-3', 0, 1, 1, 1, 30, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-05-1', 0, 'A1-029-05-1', 0, 1, 1, 1, 30, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-05-2', 0, 'A1-029-05-2', 0, 1, 1, 1, 30, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-05-3', 0, 'A1-029-05-3', 0, 1, 1, 1, 30, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-06-1', 0, 'A1-029-06-1', 0, 1, 1, 1, 30, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-06-2', 0, 'A1-029-06-2', 0, 1, 1, 1, 30, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-029-06-3', 0, 'A1-029-06-3', 0, 1, 1, 1, 30, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-01-1', 0, 'A1-030-01-1', 0, 1, 1, 1, 31, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-01-2', 0, 'A1-030-01-2', 0, 1, 1, 1, 31, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-01-3', 0, 'A1-030-01-3', 0, 1, 1, 1, 31, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-02-1', 0, 'A1-030-02-1', 0, 1, 1, 1, 31, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-02-2', 0, 'A1-030-02-2', 0, 1, 1, 1, 31, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-02-3', 0, 'A1-030-02-3', 0, 1, 1, 1, 31, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-03-1', 0, 'A1-030-03-1', 0, 1, 1, 1, 31, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-03-2', 0, 'A1-030-03-2', 0, 1, 1, 1, 31, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-03-3', 0, 'A1-030-03-3', 0, 1, 1, 1, 31, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-04-1', 0, 'A1-030-04-1', 0, 1, 1, 1, 31, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-04-2', 0, 'A1-030-04-2', 0, 1, 1, 1, 31, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-04-3', 0, 'A1-030-04-3', 0, 1, 1, 1, 31, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-05-1', 0, 'A1-030-05-1', 0, 1, 1, 1, 31, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-05-2', 0, 'A1-030-05-2', 0, 1, 1, 1, 31, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-05-3', 0, 'A1-030-05-3', 0, 1, 1, 1, 31, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-06-1', 0, 'A1-030-06-1', 0, 1, 1, 1, 31, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-06-2', 0, 'A1-030-06-2', 0, 1, 1, 1, 31, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-030-06-3', 0, 'A1-030-06-3', 0, 1, 1, 1, 31, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-01-1', 0, 'A1-031-01-1', 0, 1, 1, 1, 32, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-01-2', 0, 'A1-031-01-2', 0, 1, 1, 1, 32, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-01-3', 0, 'A1-031-01-3', 0, 1, 1, 1, 32, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-02-1', 0, 'A1-031-02-1', 0, 1, 1, 1, 32, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-02-2', 0, 'A1-031-02-2', 0, 1, 1, 1, 32, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-02-3', 0, 'A1-031-02-3', 0, 1, 1, 1, 32, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-03-1', 0, 'A1-031-03-1', 0, 1, 1, 1, 32, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-03-2', 0, 'A1-031-03-2', 0, 1, 1, 1, 32, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-03-3', 0, 'A1-031-03-3', 0, 1, 1, 1, 32, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-04-1', 0, 'A1-031-04-1', 0, 1, 1, 1, 32, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-04-2', 0, 'A1-031-04-2', 0, 1, 1, 1, 32, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-04-3', 0, 'A1-031-04-3', 0, 1, 1, 1, 32, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-05-1', 0, 'A1-031-05-1', 0, 1, 1, 1, 32, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-05-2', 0, 'A1-031-05-2', 0, 1, 1, 1, 32, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-05-3', 0, 'A1-031-05-3', 0, 1, 1, 1, 32, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-06-1', 0, 'A1-031-06-1', 0, 1, 1, 1, 32, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-06-2', 0, 'A1-031-06-2', 0, 1, 1, 1, 32, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-031-06-3', 0, 'A1-031-06-3', 0, 1, 1, 1, 32, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-01-1', 0, 'A1-032-01-1', 0, 1, 1, 1, 33, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-01-2', 0, 'A1-032-01-2', 0, 1, 1, 1, 33, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-01-3', 0, 'A1-032-01-3', 0, 1, 1, 1, 33, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-02-1', 0, 'A1-032-02-1', 0, 1, 1, 1, 33, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-02-2', 0, 'A1-032-02-2', 0, 1, 1, 1, 33, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-02-3', 0, 'A1-032-02-3', 0, 1, 1, 1, 33, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-03-1', 0, 'A1-032-03-1', 0, 1, 1, 1, 33, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-03-2', 0, 'A1-032-03-2', 0, 1, 1, 1, 33, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-03-3', 0, 'A1-032-03-3', 0, 1, 1, 1, 33, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-04-1', 0, 'A1-032-04-1', 0, 1, 1, 1, 33, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-04-2', 0, 'A1-032-04-2', 0, 1, 1, 1, 33, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-04-3', 0, 'A1-032-04-3', 0, 1, 1, 1, 33, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-05-1', 0, 'A1-032-05-1', 0, 1, 1, 1, 33, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-05-2', 0, 'A1-032-05-2', 0, 1, 1, 1, 33, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-05-3', 0, 'A1-032-05-3', 0, 1, 1, 1, 33, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-06-1', 0, 'A1-032-06-1', 0, 1, 1, 1, 33, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-06-2', 0, 'A1-032-06-2', 0, 1, 1, 1, 33, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-032-06-3', 0, 'A1-032-06-3', 0, 1, 1, 1, 33, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-01-1', 0, 'A1-033-01-1', 0, 1, 1, 1, 34, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-01-2', 0, 'A1-033-01-2', 0, 1, 1, 1, 34, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-01-3', 0, 'A1-033-01-3', 0, 1, 1, 1, 34, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-02-1', 0, 'A1-033-02-1', 0, 1, 1, 1, 34, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-02-2', 0, 'A1-033-02-2', 0, 1, 1, 1, 34, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-02-3', 0, 'A1-033-02-3', 0, 1, 1, 1, 34, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-03-1', 0, 'A1-033-03-1', 0, 1, 1, 1, 34, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-03-2', 0, 'A1-033-03-2', 0, 1, 1, 1, 34, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-03-3', 0, 'A1-033-03-3', 0, 1, 1, 1, 34, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-04-1', 0, 'A1-033-04-1', 0, 1, 1, 1, 34, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-04-2', 0, 'A1-033-04-2', 0, 1, 1, 1, 34, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-04-3', 0, 'A1-033-04-3', 0, 1, 1, 1, 34, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-05-1', 0, 'A1-033-05-1', 0, 1, 1, 1, 34, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-05-2', 0, 'A1-033-05-2', 0, 1, 1, 1, 34, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-05-3', 0, 'A1-033-05-3', 0, 1, 1, 1, 34, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-06-1', 0, 'A1-033-06-1', 0, 1, 1, 1, 34, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-06-2', 0, 'A1-033-06-2', 0, 1, 1, 1, 34, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-033-06-3', 0, 'A1-033-06-3', 0, 1, 1, 1, 34, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-01-1', 0, 'A1-034-01-1', 0, 1, 1, 1, 35, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-01-2', 0, 'A1-034-01-2', 0, 1, 1, 1, 35, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-01-3', 0, 'A1-034-01-3', 0, 1, 1, 1, 35, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-02-1', 0, 'A1-034-02-1', 0, 1, 1, 1, 35, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-02-2', 0, 'A1-034-02-2', 0, 1, 1, 1, 35, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-02-3', 0, 'A1-034-02-3', 0, 1, 1, 1, 35, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-03-1', 0, 'A1-034-03-1', 0, 1, 1, 1, 35, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-03-2', 0, 'A1-034-03-2', 0, 1, 1, 1, 35, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-03-3', 0, 'A1-034-03-3', 0, 1, 1, 1, 35, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-04-1', 0, 'A1-034-04-1', 0, 1, 1, 1, 35, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-04-2', 0, 'A1-034-04-2', 0, 1, 1, 1, 35, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-04-3', 0, 'A1-034-04-3', 0, 1, 1, 1, 35, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-05-1', 0, 'A1-034-05-1', 0, 1, 1, 1, 35, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-05-2', 0, 'A1-034-05-2', 0, 1, 1, 1, 35, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-05-3', 0, 'A1-034-05-3', 0, 1, 1, 1, 35, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-06-1', 0, 'A1-034-06-1', 0, 1, 1, 1, 35, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-06-2', 0, 'A1-034-06-2', 0, 1, 1, 1, 35, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-034-06-3', 0, 'A1-034-06-3', 0, 1, 1, 1, 35, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-01-1', 0, 'A1-035-01-1', 0, 1, 1, 1, 36, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-01-2', 0, 'A1-035-01-2', 0, 1, 1, 1, 36, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-01-3', 0, 'A1-035-01-3', 0, 1, 1, 1, 36, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-02-1', 0, 'A1-035-02-1', 0, 1, 1, 1, 36, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-02-2', 0, 'A1-035-02-2', 0, 1, 1, 1, 36, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-02-3', 0, 'A1-035-02-3', 0, 1, 1, 1, 36, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-03-1', 0, 'A1-035-03-1', 0, 1, 1, 1, 36, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-03-2', 0, 'A1-035-03-2', 0, 1, 1, 1, 36, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-03-3', 0, 'A1-035-03-3', 0, 1, 1, 1, 36, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-04-1', 0, 'A1-035-04-1', 0, 1, 1, 1, 36, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-04-2', 0, 'A1-035-04-2', 0, 1, 1, 1, 36, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-04-3', 0, 'A1-035-04-3', 0, 1, 1, 1, 36, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-05-1', 0, 'A1-035-05-1', 0, 1, 1, 1, 36, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-05-2', 0, 'A1-035-05-2', 0, 1, 1, 1, 36, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-05-3', 0, 'A1-035-05-3', 0, 1, 1, 1, 36, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-06-1', 0, 'A1-035-06-1', 0, 1, 1, 1, 36, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-06-2', 0, 'A1-035-06-2', 0, 1, 1, 1, 36, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-035-06-3', 0, 'A1-035-06-3', 0, 1, 1, 1, 36, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-01-1', 0, 'A1-036-01-1', 0, 1, 1, 1, 37, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-01-2', 0, 'A1-036-01-2', 0, 1, 1, 1, 37, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-01-3', 0, 'A1-036-01-3', 0, 1, 1, 1, 37, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-02-1', 0, 'A1-036-02-1', 0, 1, 1, 1, 37, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-02-2', 0, 'A1-036-02-2', 0, 1, 1, 1, 37, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-02-3', 0, 'A1-036-02-3', 0, 1, 1, 1, 37, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-03-1', 0, 'A1-036-03-1', 0, 1, 1, 1, 37, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-03-2', 0, 'A1-036-03-2', 0, 1, 1, 1, 37, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-03-3', 0, 'A1-036-03-3', 0, 1, 1, 1, 37, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-04-1', 0, 'A1-036-04-1', 0, 1, 1, 1, 37, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-04-2', 0, 'A1-036-04-2', 0, 1, 1, 1, 37, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-04-3', 0, 'A1-036-04-3', 0, 1, 1, 1, 37, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-05-1', 0, 'A1-036-05-1', 0, 1, 1, 1, 37, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-05-2', 0, 'A1-036-05-2', 0, 1, 1, 1, 37, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-05-3', 0, 'A1-036-05-3', 0, 1, 1, 1, 37, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-06-1', 0, 'A1-036-06-1', 0, 1, 1, 1, 37, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-06-2', 0, 'A1-036-06-2', 0, 1, 1, 1, 37, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-036-06-3', 0, 'A1-036-06-3', 0, 1, 1, 1, 37, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-01-1', 0, 'A1-037-01-1', 0, 1, 1, 1, 38, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-01-2', 0, 'A1-037-01-2', 0, 1, 1, 1, 38, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-01-3', 0, 'A1-037-01-3', 0, 1, 1, 1, 38, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-02-1', 0, 'A1-037-02-1', 0, 1, 1, 1, 38, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-02-2', 0, 'A1-037-02-2', 0, 1, 1, 1, 38, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-02-3', 0, 'A1-037-02-3', 0, 1, 1, 1, 38, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-03-1', 0, 'A1-037-03-1', 0, 1, 1, 1, 38, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-03-2', 0, 'A1-037-03-2', 0, 1, 1, 1, 38, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-03-3', 0, 'A1-037-03-3', 0, 1, 1, 1, 38, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-04-1', 0, 'A1-037-04-1', 0, 1, 1, 1, 38, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-04-2', 0, 'A1-037-04-2', 0, 1, 1, 1, 38, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-04-3', 0, 'A1-037-04-3', 0, 1, 1, 1, 38, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-05-1', 0, 'A1-037-05-1', 0, 1, 1, 1, 38, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-05-2', 0, 'A1-037-05-2', 0, 1, 1, 1, 38, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-05-3', 0, 'A1-037-05-3', 0, 1, 1, 1, 38, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-06-1', 0, 'A1-037-06-1', 0, 1, 1, 1, 38, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-06-2', 0, 'A1-037-06-2', 0, 1, 1, 1, 38, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-037-06-3', 0, 'A1-037-06-3', 0, 1, 1, 1, 38, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-01-1', 0, 'A1-038-01-1', 0, 1, 1, 1, 39, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-01-2', 0, 'A1-038-01-2', 0, 1, 1, 1, 39, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-01-3', 0, 'A1-038-01-3', 0, 1, 1, 1, 39, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-02-1', 0, 'A1-038-02-1', 0, 1, 1, 1, 39, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-02-2', 0, 'A1-038-02-2', 0, 1, 1, 1, 39, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-02-3', 0, 'A1-038-02-3', 0, 1, 1, 1, 39, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-03-1', 0, 'A1-038-03-1', 0, 1, 1, 1, 39, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-03-2', 0, 'A1-038-03-2', 0, 1, 1, 1, 39, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-03-3', 0, 'A1-038-03-3', 0, 1, 1, 1, 39, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-04-1', 0, 'A1-038-04-1', 0, 1, 1, 1, 39, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-04-2', 0, 'A1-038-04-2', 0, 1, 1, 1, 39, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-04-3', 0, 'A1-038-04-3', 0, 1, 1, 1, 39, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-05-1', 0, 'A1-038-05-1', 0, 1, 1, 1, 39, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-05-2', 0, 'A1-038-05-2', 0, 1, 1, 1, 39, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-05-3', 0, 'A1-038-05-3', 0, 1, 1, 1, 39, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-06-1', 0, 'A1-038-06-1', 0, 1, 1, 1, 39, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-06-2', 0, 'A1-038-06-2', 0, 1, 1, 1, 39, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-038-06-3', 0, 'A1-038-06-3', 0, 1, 1, 1, 39, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-01-1', 0, 'A1-039-01-1', 0, 1, 1, 1, 40, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-01-2', 0, 'A1-039-01-2', 0, 1, 1, 1, 40, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-01-3', 0, 'A1-039-01-3', 0, 1, 1, 1, 40, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-02-1', 0, 'A1-039-02-1', 0, 1, 1, 1, 40, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-02-2', 0, 'A1-039-02-2', 0, 1, 1, 1, 40, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-02-3', 0, 'A1-039-02-3', 0, 1, 1, 1, 40, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-03-1', 0, 'A1-039-03-1', 0, 1, 1, 1, 40, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-03-2', 0, 'A1-039-03-2', 0, 1, 1, 1, 40, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-03-3', 0, 'A1-039-03-3', 0, 1, 1, 1, 40, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-04-1', 0, 'A1-039-04-1', 0, 1, 1, 1, 40, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-04-2', 0, 'A1-039-04-2', 0, 1, 1, 1, 40, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-04-3', 0, 'A1-039-04-3', 0, 1, 1, 1, 40, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-05-1', 0, 'A1-039-05-1', 0, 1, 1, 1, 40, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-05-2', 0, 'A1-039-05-2', 0, 1, 1, 1, 40, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-05-3', 0, 'A1-039-05-3', 0, 1, 1, 1, 40, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-06-1', 0, 'A1-039-06-1', 0, 1, 1, 1, 40, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-06-2', 0, 'A1-039-06-2', 0, 1, 1, 1, 40, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-039-06-3', 0, 'A1-039-06-3', 0, 1, 1, 1, 40, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-01-1', 0, 'A1-040-01-1', 0, 1, 1, 1, 41, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-01-2', 0, 'A1-040-01-2', 0, 1, 1, 1, 41, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-01-3', 0, 'A1-040-01-3', 0, 1, 1, 1, 41, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-02-1', 0, 'A1-040-02-1', 0, 1, 1, 1, 41, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-02-2', 0, 'A1-040-02-2', 0, 1, 1, 1, 41, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-02-3', 0, 'A1-040-02-3', 0, 1, 1, 1, 41, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-03-1', 0, 'A1-040-03-1', 0, 1, 1, 1, 41, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-03-2', 0, 'A1-040-03-2', 0, 1, 1, 1, 41, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-03-3', 0, 'A1-040-03-3', 0, 1, 1, 1, 41, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-04-1', 0, 'A1-040-04-1', 0, 1, 1, 1, 41, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-04-2', 0, 'A1-040-04-2', 0, 1, 1, 1, 41, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-04-3', 0, 'A1-040-04-3', 0, 1, 1, 1, 41, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-05-1', 0, 'A1-040-05-1', 0, 1, 1, 1, 41, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-05-2', 0, 'A1-040-05-2', 0, 1, 1, 1, 41, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-05-3', 0, 'A1-040-05-3', 0, 1, 1, 1, 41, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-06-1', 0, 'A1-040-06-1', 0, 1, 1, 1, 41, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-06-2', 0, 'A1-040-06-2', 0, 1, 1, 1, 41, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-040-06-3', 0, 'A1-040-06-3', 0, 1, 1, 1, 41, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-01-1', 0, 'A1-041-01-1', 0, 1, 1, 1, 42, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-01-2', 0, 'A1-041-01-2', 0, 1, 1, 1, 42, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-01-3', 0, 'A1-041-01-3', 0, 1, 1, 1, 42, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-02-1', 0, 'A1-041-02-1', 0, 1, 1, 1, 42, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-02-2', 0, 'A1-041-02-2', 0, 1, 1, 1, 42, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-02-3', 0, 'A1-041-02-3', 0, 1, 1, 1, 42, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-03-1', 0, 'A1-041-03-1', 0, 1, 1, 1, 42, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-03-2', 0, 'A1-041-03-2', 0, 1, 1, 1, 42, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-03-3', 0, 'A1-041-03-3', 0, 1, 1, 1, 42, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-04-1', 0, 'A1-041-04-1', 0, 1, 1, 1, 42, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-04-2', 0, 'A1-041-04-2', 0, 1, 1, 1, 42, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-04-3', 0, 'A1-041-04-3', 0, 1, 1, 1, 42, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-05-1', 0, 'A1-041-05-1', 0, 1, 1, 1, 42, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-05-2', 0, 'A1-041-05-2', 0, 1, 1, 1, 42, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-05-3', 0, 'A1-041-05-3', 0, 1, 1, 1, 42, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-06-1', 0, 'A1-041-06-1', 0, 1, 1, 1, 42, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-06-2', 0, 'A1-041-06-2', 0, 1, 1, 1, 42, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-041-06-3', 0, 'A1-041-06-3', 0, 1, 1, 1, 42, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-01-1', 0, 'A1-042-01-1', 0, 1, 1, 1, 43, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-01-2', 0, 'A1-042-01-2', 0, 1, 1, 1, 43, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-01-3', 0, 'A1-042-01-3', 0, 1, 1, 1, 43, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-02-1', 0, 'A1-042-02-1', 0, 1, 1, 1, 43, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-02-2', 0, 'A1-042-02-2', 0, 1, 1, 1, 43, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-02-3', 0, 'A1-042-02-3', 0, 1, 1, 1, 43, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-03-1', 0, 'A1-042-03-1', 0, 1, 1, 1, 43, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-03-2', 0, 'A1-042-03-2', 0, 1, 1, 1, 43, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-03-3', 0, 'A1-042-03-3', 0, 1, 1, 1, 43, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-04-1', 0, 'A1-042-04-1', 0, 1, 1, 1, 43, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-04-2', 0, 'A1-042-04-2', 0, 1, 1, 1, 43, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-04-3', 0, 'A1-042-04-3', 0, 1, 1, 1, 43, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-05-1', 0, 'A1-042-05-1', 0, 1, 1, 1, 43, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-05-2', 0, 'A1-042-05-2', 0, 1, 1, 1, 43, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-05-3', 0, 'A1-042-05-3', 0, 1, 1, 1, 43, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-06-1', 0, 'A1-042-06-1', 0, 1, 1, 1, 43, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-06-2', 0, 'A1-042-06-2', 0, 1, 1, 1, 43, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-042-06-3', 0, 'A1-042-06-3', 0, 1, 1, 1, 43, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-01-1', 0, 'A1-043-01-1', 0, 1, 1, 1, 44, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-01-2', 0, 'A1-043-01-2', 0, 1, 1, 1, 44, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-01-3', 0, 'A1-043-01-3', 0, 1, 1, 1, 44, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-02-1', 0, 'A1-043-02-1', 0, 1, 1, 1, 44, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-02-2', 0, 'A1-043-02-2', 0, 1, 1, 1, 44, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-02-3', 0, 'A1-043-02-3', 0, 1, 1, 1, 44, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-03-1', 0, 'A1-043-03-1', 0, 1, 1, 1, 44, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-03-2', 0, 'A1-043-03-2', 0, 1, 1, 1, 44, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-03-3', 0, 'A1-043-03-3', 0, 1, 1, 1, 44, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-04-1', 0, 'A1-043-04-1', 0, 1, 1, 1, 44, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-04-2', 0, 'A1-043-04-2', 0, 1, 1, 1, 44, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-04-3', 0, 'A1-043-04-3', 0, 1, 1, 1, 44, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-05-1', 0, 'A1-043-05-1', 0, 1, 1, 1, 44, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-05-2', 0, 'A1-043-05-2', 0, 1, 1, 1, 44, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-05-3', 0, 'A1-043-05-3', 0, 1, 1, 1, 44, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-06-1', 0, 'A1-043-06-1', 0, 1, 1, 1, 44, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-06-2', 0, 'A1-043-06-2', 0, 1, 1, 1, 44, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-043-06-3', 0, 'A1-043-06-3', 0, 1, 1, 1, 44, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-01-1', 0, 'A1-044-01-1', 0, 1, 1, 1, 45, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-01-2', 0, 'A1-044-01-2', 0, 1, 1, 1, 45, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-01-3', 0, 'A1-044-01-3', 0, 1, 1, 1, 45, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-02-1', 0, 'A1-044-02-1', 0, 1, 1, 1, 45, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-02-2', 0, 'A1-044-02-2', 0, 1, 1, 1, 45, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-02-3', 0, 'A1-044-02-3', 0, 1, 1, 1, 45, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-03-1', 0, 'A1-044-03-1', 0, 1, 1, 1, 45, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-03-2', 0, 'A1-044-03-2', 0, 1, 1, 1, 45, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-03-3', 0, 'A1-044-03-3', 0, 1, 1, 1, 45, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-04-1', 0, 'A1-044-04-1', 0, 1, 1, 1, 45, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-04-2', 0, 'A1-044-04-2', 0, 1, 1, 1, 45, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-04-3', 0, 'A1-044-04-3', 0, 1, 1, 1, 45, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-05-1', 0, 'A1-044-05-1', 0, 1, 1, 1, 45, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-05-2', 0, 'A1-044-05-2', 0, 1, 1, 1, 45, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-05-3', 0, 'A1-044-05-3', 0, 1, 1, 1, 45, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-06-1', 0, 'A1-044-06-1', 0, 1, 1, 1, 45, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-06-2', 0, 'A1-044-06-2', 0, 1, 1, 1, 45, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-044-06-3', 0, 'A1-044-06-3', 0, 1, 1, 1, 45, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-01-1', 0, 'A1-045-01-1', 0, 1, 1, 1, 46, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-01-2', 0, 'A1-045-01-2', 0, 1, 1, 1, 46, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-01-3', 0, 'A1-045-01-3', 0, 1, 1, 1, 46, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-02-1', 0, 'A1-045-02-1', 0, 1, 1, 1, 46, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-02-2', 0, 'A1-045-02-2', 0, 1, 1, 1, 46, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-02-3', 0, 'A1-045-02-3', 0, 1, 1, 1, 46, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-03-1', 0, 'A1-045-03-1', 0, 1, 1, 1, 46, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-03-2', 0, 'A1-045-03-2', 0, 1, 1, 1, 46, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-03-3', 0, 'A1-045-03-3', 0, 1, 1, 1, 46, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-04-1', 0, 'A1-045-04-1', 0, 1, 1, 1, 46, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-04-2', 0, 'A1-045-04-2', 0, 1, 1, 1, 46, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-04-3', 0, 'A1-045-04-3', 0, 1, 1, 1, 46, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-05-1', 0, 'A1-045-05-1', 0, 1, 1, 1, 46, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-05-2', 0, 'A1-045-05-2', 0, 1, 1, 1, 46, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-05-3', 0, 'A1-045-05-3', 0, 1, 1, 1, 46, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-06-1', 0, 'A1-045-06-1', 0, 1, 1, 1, 46, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-06-2', 0, 'A1-045-06-2', 0, 1, 1, 1, 46, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-045-06-3', 0, 'A1-045-06-3', 0, 1, 1, 1, 46, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-01-1', 0, 'A1-046-01-1', 0, 1, 1, 1, 47, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-01-2', 0, 'A1-046-01-2', 0, 1, 1, 1, 47, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-01-3', 0, 'A1-046-01-3', 0, 1, 1, 1, 47, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-02-1', 0, 'A1-046-02-1', 0, 1, 1, 1, 47, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-02-2', 0, 'A1-046-02-2', 0, 1, 1, 1, 47, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-02-3', 0, 'A1-046-02-3', 0, 1, 1, 1, 47, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-03-1', 0, 'A1-046-03-1', 0, 1, 1, 1, 47, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-03-2', 0, 'A1-046-03-2', 0, 1, 1, 1, 47, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-03-3', 0, 'A1-046-03-3', 0, 1, 1, 1, 47, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-04-1', 0, 'A1-046-04-1', 0, 1, 1, 1, 47, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-04-2', 0, 'A1-046-04-2', 0, 1, 1, 1, 47, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-04-3', 0, 'A1-046-04-3', 0, 1, 1, 1, 47, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-05-1', 0, 'A1-046-05-1', 0, 1, 1, 1, 47, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-05-2', 0, 'A1-046-05-2', 0, 1, 1, 1, 47, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-05-3', 0, 'A1-046-05-3', 0, 1, 1, 1, 47, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-06-1', 0, 'A1-046-06-1', 0, 1, 1, 1, 47, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-06-2', 0, 'A1-046-06-2', 0, 1, 1, 1, 47, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-046-06-3', 0, 'A1-046-06-3', 0, 1, 1, 1, 47, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-01-1', 0, 'A1-047-01-1', 0, 1, 1, 1, 48, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-01-2', 0, 'A1-047-01-2', 0, 1, 1, 1, 48, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-01-3', 0, 'A1-047-01-3', 0, 1, 1, 1, 48, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-02-1', 0, 'A1-047-02-1', 0, 1, 1, 1, 48, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-02-2', 0, 'A1-047-02-2', 0, 1, 1, 1, 48, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-02-3', 0, 'A1-047-02-3', 0, 1, 1, 1, 48, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-03-1', 0, 'A1-047-03-1', 0, 1, 1, 1, 48, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-03-2', 0, 'A1-047-03-2', 0, 1, 1, 1, 48, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-03-3', 0, 'A1-047-03-3', 0, 1, 1, 1, 48, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-04-1', 0, 'A1-047-04-1', 0, 1, 1, 1, 48, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-04-2', 0, 'A1-047-04-2', 0, 1, 1, 1, 48, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-04-3', 0, 'A1-047-04-3', 0, 1, 1, 1, 48, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-05-1', 0, 'A1-047-05-1', 0, 1, 1, 1, 48, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-05-2', 0, 'A1-047-05-2', 0, 1, 1, 1, 48, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-05-3', 0, 'A1-047-05-3', 0, 1, 1, 1, 48, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-06-1', 0, 'A1-047-06-1', 0, 1, 1, 1, 48, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-06-2', 0, 'A1-047-06-2', 0, 1, 1, 1, 48, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-047-06-3', 0, 'A1-047-06-3', 0, 1, 1, 1, 48, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-01-1', 0, 'A1-048-01-1', 0, 1, 1, 1, 49, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-01-2', 0, 'A1-048-01-2', 0, 1, 1, 1, 49, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-01-3', 0, 'A1-048-01-3', 0, 1, 1, 1, 49, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-02-1', 0, 'A1-048-02-1', 0, 1, 1, 1, 49, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-02-2', 0, 'A1-048-02-2', 0, 1, 1, 1, 49, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-02-3', 0, 'A1-048-02-3', 0, 1, 1, 1, 49, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-03-1', 0, 'A1-048-03-1', 0, 1, 1, 1, 49, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-03-2', 0, 'A1-048-03-2', 0, 1, 1, 1, 49, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-03-3', 0, 'A1-048-03-3', 0, 1, 1, 1, 49, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-04-1', 0, 'A1-048-04-1', 0, 1, 1, 1, 49, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-04-2', 0, 'A1-048-04-2', 0, 1, 1, 1, 49, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-04-3', 0, 'A1-048-04-3', 0, 1, 1, 1, 49, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-05-1', 0, 'A1-048-05-1', 0, 1, 1, 1, 49, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-05-2', 0, 'A1-048-05-2', 0, 1, 1, 1, 49, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-05-3', 0, 'A1-048-05-3', 0, 1, 1, 1, 49, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-06-1', 0, 'A1-048-06-1', 0, 1, 1, 1, 49, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-06-2', 0, 'A1-048-06-2', 0, 1, 1, 1, 49, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-048-06-3', 0, 'A1-048-06-3', 0, 1, 1, 1, 49, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-01-1', 0, 'A1-049-01-1', 0, 1, 1, 1, 50, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-01-2', 0, 'A1-049-01-2', 0, 1, 1, 1, 50, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-01-3', 0, 'A1-049-01-3', 0, 1, 1, 1, 50, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-02-1', 0, 'A1-049-02-1', 0, 1, 1, 1, 50, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-02-2', 0, 'A1-049-02-2', 0, 1, 1, 1, 50, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-02-3', 0, 'A1-049-02-3', 0, 1, 1, 1, 50, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-03-1', 0, 'A1-049-03-1', 0, 1, 1, 1, 50, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-03-2', 0, 'A1-049-03-2', 0, 1, 1, 1, 50, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-03-3', 0, 'A1-049-03-3', 0, 1, 1, 1, 50, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-04-1', 0, 'A1-049-04-1', 0, 1, 1, 1, 50, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-04-2', 0, 'A1-049-04-2', 0, 1, 1, 1, 50, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-04-3', 0, 'A1-049-04-3', 0, 1, 1, 1, 50, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-05-1', 0, 'A1-049-05-1', 0, 1, 1, 1, 50, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-05-2', 0, 'A1-049-05-2', 0, 1, 1, 1, 50, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-05-3', 0, 'A1-049-05-3', 0, 1, 1, 1, 50, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-06-1', 0, 'A1-049-06-1', 0, 1, 1, 1, 50, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-06-2', 0, 'A1-049-06-2', 0, 1, 1, 1, 50, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-049-06-3', 0, 'A1-049-06-3', 0, 1, 1, 1, 50, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-01-1', 0, 'A1-050-01-1', 0, 1, 1, 1, 51, 1, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-01-2', 0, 'A1-050-01-2', 0, 1, 1, 1, 51, 1, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-01-3', 0, 'A1-050-01-3', 0, 1, 1, 1, 51, 1, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-02-1', 0, 'A1-050-02-1', 0, 1, 1, 1, 51, 2, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-02-2', 0, 'A1-050-02-2', 0, 1, 1, 1, 51, 2, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-02-3', 0, 'A1-050-02-3', 0, 1, 1, 1, 51, 2, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-03-1', 0, 'A1-050-03-1', 0, 1, 1, 1, 51, 3, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-03-2', 0, 'A1-050-03-2', 0, 1, 1, 1, 51, 3, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-03-3', 0, 'A1-050-03-3', 0, 1, 1, 1, 51, 3, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-04-1', 0, 'A1-050-04-1', 0, 1, 1, 1, 51, 4, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-04-2', 0, 'A1-050-04-2', 0, 1, 1, 1, 51, 4, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-04-3', 0, 'A1-050-04-3', 0, 1, 1, 1, 51, 4, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-05-1', 0, 'A1-050-05-1', 0, 1, 1, 1, 51, 5, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-05-2', 0, 'A1-050-05-2', 0, 1, 1, 1, 51, 5, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-05-3', 0, 'A1-050-05-3', 0, 1, 1, 1, 51, 5, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-06-1', 0, 'A1-050-06-1', 0, 1, 1, 1, 51, 6, 1, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-06-2', 0, 'A1-050-06-2', 0, 1, 1, 1, 51, 6, 2, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A1-050-06-3', 0, 'A1-050-06-3', 0, 1, 1, 1, 51, 6, 3, NULL, NULL, '2025-10-05 15:25:52', '2025-10-05 15:25:52', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-01-1', 0, 'A2-001-01-1', 0, 1, 1, 2, 2, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-01-2', 0, 'A2-001-01-2', 0, 1, 1, 2, 2, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-01-3', 0, 'A2-001-01-3', 0, 1, 1, 2, 2, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-02-1', 0, 'A2-001-02-1', 0, 1, 1, 2, 2, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-02-2', 0, 'A2-001-02-2', 0, 1, 1, 2, 2, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-02-3', 0, 'A2-001-02-3', 0, 1, 1, 2, 2, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-03-1', 0, 'A2-001-03-1', 0, 1, 1, 2, 2, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-03-2', 0, 'A2-001-03-2', 0, 1, 1, 2, 2, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-03-3', 0, 'A2-001-03-3', 0, 1, 1, 2, 2, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-04-1', 0, 'A2-001-04-1', 0, 1, 1, 2, 2, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-04-2', 0, 'A2-001-04-2', 0, 1, 1, 2, 2, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-04-3', 0, 'A2-001-04-3', 0, 1, 1, 2, 2, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-05-1', 0, 'A2-001-05-1', 0, 1, 1, 2, 2, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-05-2', 0, 'A2-001-05-2', 0, 1, 1, 2, 2, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-05-3', 0, 'A2-001-05-3', 0, 1, 1, 2, 2, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-06-1', 0, 'A2-001-06-1', 0, 1, 1, 2, 2, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-06-2', 0, 'A2-001-06-2', 0, 1, 1, 2, 2, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-001-06-3', 0, 'A2-001-06-3', 0, 1, 1, 2, 2, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-01-1', 0, 'A2-002-01-1', 0, 1, 1, 2, 3, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-01-2', 0, 'A2-002-01-2', 0, 1, 1, 2, 3, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-01-3', 0, 'A2-002-01-3', 0, 1, 1, 2, 3, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-02-1', 0, 'A2-002-02-1', 0, 1, 1, 2, 3, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-02-2', 0, 'A2-002-02-2', 0, 1, 1, 2, 3, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-02-3', 0, 'A2-002-02-3', 0, 1, 1, 2, 3, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-03-1', 0, 'A2-002-03-1', 0, 1, 1, 2, 3, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-03-2', 0, 'A2-002-03-2', 0, 1, 1, 2, 3, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-03-3', 0, 'A2-002-03-3', 0, 1, 1, 2, 3, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-04-1', 0, 'A2-002-04-1', 0, 1, 1, 2, 3, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-04-2', 0, 'A2-002-04-2', 0, 1, 1, 2, 3, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-04-3', 0, 'A2-002-04-3', 0, 1, 1, 2, 3, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-05-1', 0, 'A2-002-05-1', 0, 1, 1, 2, 3, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-05-2', 0, 'A2-002-05-2', 0, 1, 1, 2, 3, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-05-3', 0, 'A2-002-05-3', 0, 1, 1, 2, 3, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-06-1', 0, 'A2-002-06-1', 0, 1, 1, 2, 3, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-06-2', 0, 'A2-002-06-2', 0, 1, 1, 2, 3, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-002-06-3', 0, 'A2-002-06-3', 0, 1, 1, 2, 3, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-01-1', 0, 'A2-003-01-1', 0, 1, 1, 2, 4, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-01-2', 0, 'A2-003-01-2', 0, 1, 1, 2, 4, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-01-3', 0, 'A2-003-01-3', 0, 1, 1, 2, 4, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-02-1', 0, 'A2-003-02-1', 0, 1, 1, 2, 4, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-02-2', 0, 'A2-003-02-2', 0, 1, 1, 2, 4, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-02-3', 0, 'A2-003-02-3', 0, 1, 1, 2, 4, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-03-1', 0, 'A2-003-03-1', 0, 1, 1, 2, 4, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-03-2', 0, 'A2-003-03-2', 0, 1, 1, 2, 4, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-03-3', 0, 'A2-003-03-3', 0, 1, 1, 2, 4, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-04-1', 0, 'A2-003-04-1', 0, 1, 1, 2, 4, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-04-2', 0, 'A2-003-04-2', 0, 1, 1, 2, 4, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-04-3', 0, 'A2-003-04-3', 0, 1, 1, 2, 4, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-05-1', 0, 'A2-003-05-1', 0, 1, 1, 2, 4, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-05-2', 0, 'A2-003-05-2', 0, 1, 1, 2, 4, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-05-3', 0, 'A2-003-05-3', 0, 1, 1, 2, 4, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-06-1', 0, 'A2-003-06-1', 0, 1, 1, 2, 4, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-06-2', 0, 'A2-003-06-2', 0, 1, 1, 2, 4, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-003-06-3', 0, 'A2-003-06-3', 0, 1, 1, 2, 4, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-01-1', 0, 'A2-004-01-1', 0, 1, 1, 2, 5, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-01-2', 0, 'A2-004-01-2', 0, 1, 1, 2, 5, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-01-3', 0, 'A2-004-01-3', 0, 1, 1, 2, 5, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-02-1', 0, 'A2-004-02-1', 0, 1, 1, 2, 5, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-02-2', 0, 'A2-004-02-2', 0, 1, 1, 2, 5, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-02-3', 0, 'A2-004-02-3', 0, 1, 1, 2, 5, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-03-1', 0, 'A2-004-03-1', 0, 1, 1, 2, 5, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-03-2', 0, 'A2-004-03-2', 0, 1, 1, 2, 5, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-03-3', 0, 'A2-004-03-3', 0, 1, 1, 2, 5, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-04-1', 0, 'A2-004-04-1', 0, 1, 1, 2, 5, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-04-2', 0, 'A2-004-04-2', 0, 1, 1, 2, 5, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-04-3', 0, 'A2-004-04-3', 0, 1, 1, 2, 5, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-05-1', 0, 'A2-004-05-1', 0, 1, 1, 2, 5, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-05-2', 0, 'A2-004-05-2', 0, 1, 1, 2, 5, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-05-3', 0, 'A2-004-05-3', 0, 1, 1, 2, 5, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-06-1', 0, 'A2-004-06-1', 0, 1, 1, 2, 5, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-06-2', 0, 'A2-004-06-2', 0, 1, 1, 2, 5, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-004-06-3', 0, 'A2-004-06-3', 0, 1, 1, 2, 5, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-01-1', 0, 'A2-005-01-1', 0, 1, 1, 2, 6, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-01-2', 0, 'A2-005-01-2', 0, 1, 1, 2, 6, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-01-3', 0, 'A2-005-01-3', 0, 1, 1, 2, 6, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-02-1', 0, 'A2-005-02-1', 0, 1, 1, 2, 6, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-02-2', 0, 'A2-005-02-2', 0, 1, 1, 2, 6, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-02-3', 0, 'A2-005-02-3', 0, 1, 1, 2, 6, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-03-1', 0, 'A2-005-03-1', 0, 1, 1, 2, 6, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-03-2', 0, 'A2-005-03-2', 0, 1, 1, 2, 6, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-03-3', 0, 'A2-005-03-3', 0, 1, 1, 2, 6, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-04-1', 0, 'A2-005-04-1', 0, 1, 1, 2, 6, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-04-2', 0, 'A2-005-04-2', 0, 1, 1, 2, 6, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-04-3', 0, 'A2-005-04-3', 0, 1, 1, 2, 6, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-05-1', 0, 'A2-005-05-1', 0, 1, 1, 2, 6, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-05-2', 0, 'A2-005-05-2', 0, 1, 1, 2, 6, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-05-3', 0, 'A2-005-05-3', 0, 1, 1, 2, 6, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-06-1', 0, 'A2-005-06-1', 0, 1, 1, 2, 6, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-06-2', 0, 'A2-005-06-2', 0, 1, 1, 2, 6, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-005-06-3', 0, 'A2-005-06-3', 0, 1, 1, 2, 6, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-01-1', 0, 'A2-006-01-1', 0, 1, 1, 2, 7, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-01-2', 0, 'A2-006-01-2', 0, 1, 1, 2, 7, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-01-3', 0, 'A2-006-01-3', 0, 1, 1, 2, 7, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-02-1', 0, 'A2-006-02-1', 0, 1, 1, 2, 7, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-02-2', 0, 'A2-006-02-2', 0, 1, 1, 2, 7, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-02-3', 0, 'A2-006-02-3', 0, 1, 1, 2, 7, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-03-1', 0, 'A2-006-03-1', 0, 1, 1, 2, 7, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-03-2', 0, 'A2-006-03-2', 0, 1, 1, 2, 7, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-03-3', 0, 'A2-006-03-3', 0, 1, 1, 2, 7, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-04-1', 0, 'A2-006-04-1', 0, 1, 1, 2, 7, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-04-2', 0, 'A2-006-04-2', 0, 1, 1, 2, 7, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-04-3', 0, 'A2-006-04-3', 0, 1, 1, 2, 7, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-05-1', 0, 'A2-006-05-1', 0, 1, 1, 2, 7, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-05-2', 0, 'A2-006-05-2', 0, 1, 1, 2, 7, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-05-3', 0, 'A2-006-05-3', 0, 1, 1, 2, 7, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-06-1', 0, 'A2-006-06-1', 0, 1, 1, 2, 7, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-06-2', 0, 'A2-006-06-2', 0, 1, 1, 2, 7, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-006-06-3', 0, 'A2-006-06-3', 0, 1, 1, 2, 7, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-01-1', 0, 'A2-007-01-1', 0, 1, 1, 2, 8, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-01-2', 0, 'A2-007-01-2', 0, 1, 1, 2, 8, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-01-3', 0, 'A2-007-01-3', 0, 1, 1, 2, 8, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-02-1', 0, 'A2-007-02-1', 0, 1, 1, 2, 8, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-02-2', 0, 'A2-007-02-2', 0, 1, 1, 2, 8, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-02-3', 0, 'A2-007-02-3', 0, 1, 1, 2, 8, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-03-1', 0, 'A2-007-03-1', 0, 1, 1, 2, 8, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-03-2', 0, 'A2-007-03-2', 0, 1, 1, 2, 8, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-03-3', 0, 'A2-007-03-3', 0, 1, 1, 2, 8, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-04-1', 0, 'A2-007-04-1', 0, 1, 1, 2, 8, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-04-2', 0, 'A2-007-04-2', 0, 1, 1, 2, 8, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-04-3', 0, 'A2-007-04-3', 0, 1, 1, 2, 8, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-05-1', 0, 'A2-007-05-1', 0, 1, 1, 2, 8, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-05-2', 0, 'A2-007-05-2', 0, 1, 1, 2, 8, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-05-3', 0, 'A2-007-05-3', 0, 1, 1, 2, 8, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-06-1', 0, 'A2-007-06-1', 0, 1, 1, 2, 8, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-06-2', 0, 'A2-007-06-2', 0, 1, 1, 2, 8, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-007-06-3', 0, 'A2-007-06-3', 0, 1, 1, 2, 8, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-01-1', 0, 'A2-008-01-1', 0, 1, 1, 2, 9, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-01-2', 0, 'A2-008-01-2', 0, 1, 1, 2, 9, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-01-3', 0, 'A2-008-01-3', 0, 1, 1, 2, 9, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-02-1', 0, 'A2-008-02-1', 0, 1, 1, 2, 9, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-02-2', 0, 'A2-008-02-2', 0, 1, 1, 2, 9, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-02-3', 0, 'A2-008-02-3', 0, 1, 1, 2, 9, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-03-1', 0, 'A2-008-03-1', 0, 1, 1, 2, 9, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-03-2', 0, 'A2-008-03-2', 0, 1, 1, 2, 9, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-03-3', 0, 'A2-008-03-3', 0, 1, 1, 2, 9, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-04-1', 0, 'A2-008-04-1', 0, 1, 1, 2, 9, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-04-2', 0, 'A2-008-04-2', 0, 1, 1, 2, 9, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-04-3', 0, 'A2-008-04-3', 0, 1, 1, 2, 9, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-05-1', 0, 'A2-008-05-1', 0, 1, 1, 2, 9, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-05-2', 0, 'A2-008-05-2', 0, 1, 1, 2, 9, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-05-3', 0, 'A2-008-05-3', 0, 1, 1, 2, 9, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-06-1', 0, 'A2-008-06-1', 0, 1, 1, 2, 9, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-06-2', 0, 'A2-008-06-2', 0, 1, 1, 2, 9, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-008-06-3', 0, 'A2-008-06-3', 0, 1, 1, 2, 9, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-01-1', 0, 'A2-009-01-1', 0, 1, 1, 2, 10, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-01-2', 0, 'A2-009-01-2', 0, 1, 1, 2, 10, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-01-3', 0, 'A2-009-01-3', 0, 1, 1, 2, 10, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-02-1', 0, 'A2-009-02-1', 0, 1, 1, 2, 10, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-02-2', 0, 'A2-009-02-2', 0, 1, 1, 2, 10, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-02-3', 0, 'A2-009-02-3', 0, 1, 1, 2, 10, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-03-1', 0, 'A2-009-03-1', 0, 1, 1, 2, 10, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-03-2', 0, 'A2-009-03-2', 0, 1, 1, 2, 10, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-03-3', 0, 'A2-009-03-3', 0, 1, 1, 2, 10, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-04-1', 0, 'A2-009-04-1', 0, 1, 1, 2, 10, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-04-2', 0, 'A2-009-04-2', 0, 1, 1, 2, 10, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-04-3', 0, 'A2-009-04-3', 0, 1, 1, 2, 10, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-05-1', 0, 'A2-009-05-1', 0, 1, 1, 2, 10, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-05-2', 0, 'A2-009-05-2', 0, 1, 1, 2, 10, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-05-3', 0, 'A2-009-05-3', 0, 1, 1, 2, 10, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-06-1', 0, 'A2-009-06-1', 0, 1, 1, 2, 10, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-06-2', 0, 'A2-009-06-2', 0, 1, 1, 2, 10, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-009-06-3', 0, 'A2-009-06-3', 0, 1, 1, 2, 10, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-01-1', 0, 'A2-010-01-1', 0, 1, 1, 2, 11, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-01-2', 0, 'A2-010-01-2', 0, 1, 1, 2, 11, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-01-3', 0, 'A2-010-01-3', 0, 1, 1, 2, 11, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-02-1', 0, 'A2-010-02-1', 0, 1, 1, 2, 11, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-02-2', 0, 'A2-010-02-2', 0, 1, 1, 2, 11, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-02-3', 0, 'A2-010-02-3', 0, 1, 1, 2, 11, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-03-1', 0, 'A2-010-03-1', 0, 1, 1, 2, 11, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-03-2', 0, 'A2-010-03-2', 0, 1, 1, 2, 11, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-03-3', 0, 'A2-010-03-3', 0, 1, 1, 2, 11, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-04-1', 0, 'A2-010-04-1', 0, 1, 1, 2, 11, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-04-2', 0, 'A2-010-04-2', 0, 1, 1, 2, 11, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-04-3', 0, 'A2-010-04-3', 0, 1, 1, 2, 11, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-05-1', 0, 'A2-010-05-1', 0, 1, 1, 2, 11, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-05-2', 0, 'A2-010-05-2', 0, 1, 1, 2, 11, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-05-3', 0, 'A2-010-05-3', 0, 1, 1, 2, 11, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-06-1', 0, 'A2-010-06-1', 0, 1, 1, 2, 11, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-06-2', 0, 'A2-010-06-2', 0, 1, 1, 2, 11, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-010-06-3', 0, 'A2-010-06-3', 0, 1, 1, 2, 11, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-01-1', 0, 'A2-011-01-1', 0, 1, 1, 2, 12, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-01-2', 0, 'A2-011-01-2', 0, 1, 1, 2, 12, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-01-3', 0, 'A2-011-01-3', 0, 1, 1, 2, 12, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-02-1', 0, 'A2-011-02-1', 0, 1, 1, 2, 12, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-02-2', 0, 'A2-011-02-2', 0, 1, 1, 2, 12, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-02-3', 0, 'A2-011-02-3', 0, 1, 1, 2, 12, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-03-1', 0, 'A2-011-03-1', 0, 1, 1, 2, 12, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-03-2', 0, 'A2-011-03-2', 0, 1, 1, 2, 12, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-03-3', 0, 'A2-011-03-3', 0, 1, 1, 2, 12, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-04-1', 0, 'A2-011-04-1', 0, 1, 1, 2, 12, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-04-2', 0, 'A2-011-04-2', 0, 1, 1, 2, 12, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-04-3', 0, 'A2-011-04-3', 0, 1, 1, 2, 12, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-05-1', 0, 'A2-011-05-1', 0, 1, 1, 2, 12, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-05-2', 0, 'A2-011-05-2', 0, 1, 1, 2, 12, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-05-3', 0, 'A2-011-05-3', 0, 1, 1, 2, 12, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-06-1', 0, 'A2-011-06-1', 0, 1, 1, 2, 12, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-06-2', 0, 'A2-011-06-2', 0, 1, 1, 2, 12, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-011-06-3', 0, 'A2-011-06-3', 0, 1, 1, 2, 12, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-01-1', 0, 'A2-012-01-1', 0, 1, 1, 2, 13, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-01-2', 0, 'A2-012-01-2', 0, 1, 1, 2, 13, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-01-3', 0, 'A2-012-01-3', 0, 1, 1, 2, 13, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-02-1', 0, 'A2-012-02-1', 0, 1, 1, 2, 13, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-02-2', 0, 'A2-012-02-2', 0, 1, 1, 2, 13, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-02-3', 0, 'A2-012-02-3', 0, 1, 1, 2, 13, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-03-1', 0, 'A2-012-03-1', 0, 1, 1, 2, 13, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-03-2', 0, 'A2-012-03-2', 0, 1, 1, 2, 13, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-03-3', 0, 'A2-012-03-3', 0, 1, 1, 2, 13, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-04-1', 0, 'A2-012-04-1', 0, 1, 1, 2, 13, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-04-2', 0, 'A2-012-04-2', 0, 1, 1, 2, 13, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-04-3', 0, 'A2-012-04-3', 0, 1, 1, 2, 13, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-05-1', 0, 'A2-012-05-1', 0, 1, 1, 2, 13, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-05-2', 0, 'A2-012-05-2', 0, 1, 1, 2, 13, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-05-3', 0, 'A2-012-05-3', 0, 1, 1, 2, 13, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-06-1', 0, 'A2-012-06-1', 0, 1, 1, 2, 13, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-06-2', 0, 'A2-012-06-2', 0, 1, 1, 2, 13, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-012-06-3', 0, 'A2-012-06-3', 0, 1, 1, 2, 13, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-01-1', 0, 'A2-013-01-1', 0, 1, 1, 2, 14, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-01-2', 0, 'A2-013-01-2', 0, 1, 1, 2, 14, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-01-3', 0, 'A2-013-01-3', 0, 1, 1, 2, 14, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-02-1', 0, 'A2-013-02-1', 0, 1, 1, 2, 14, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-02-2', 0, 'A2-013-02-2', 0, 1, 1, 2, 14, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-02-3', 0, 'A2-013-02-3', 0, 1, 1, 2, 14, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-03-1', 0, 'A2-013-03-1', 0, 1, 1, 2, 14, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-03-2', 0, 'A2-013-03-2', 0, 1, 1, 2, 14, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-03-3', 0, 'A2-013-03-3', 0, 1, 1, 2, 14, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-04-1', 0, 'A2-013-04-1', 0, 1, 1, 2, 14, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-04-2', 0, 'A2-013-04-2', 0, 1, 1, 2, 14, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-04-3', 0, 'A2-013-04-3', 0, 1, 1, 2, 14, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-05-1', 0, 'A2-013-05-1', 0, 1, 1, 2, 14, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-05-2', 0, 'A2-013-05-2', 0, 1, 1, 2, 14, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-05-3', 0, 'A2-013-05-3', 0, 1, 1, 2, 14, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-06-1', 0, 'A2-013-06-1', 0, 1, 1, 2, 14, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-06-2', 0, 'A2-013-06-2', 0, 1, 1, 2, 14, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-013-06-3', 0, 'A2-013-06-3', 0, 1, 1, 2, 14, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-01-1', 0, 'A2-014-01-1', 0, 1, 1, 2, 15, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-01-2', 0, 'A2-014-01-2', 0, 1, 1, 2, 15, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-01-3', 0, 'A2-014-01-3', 0, 1, 1, 2, 15, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-02-1', 0, 'A2-014-02-1', 0, 1, 1, 2, 15, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-02-2', 0, 'A2-014-02-2', 0, 1, 1, 2, 15, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-02-3', 0, 'A2-014-02-3', 0, 1, 1, 2, 15, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-03-1', 0, 'A2-014-03-1', 0, 1, 1, 2, 15, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-03-2', 0, 'A2-014-03-2', 0, 1, 1, 2, 15, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-03-3', 0, 'A2-014-03-3', 0, 1, 1, 2, 15, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-04-1', 0, 'A2-014-04-1', 0, 1, 1, 2, 15, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-04-2', 0, 'A2-014-04-2', 0, 1, 1, 2, 15, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-04-3', 0, 'A2-014-04-3', 0, 1, 1, 2, 15, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-05-1', 0, 'A2-014-05-1', 0, 1, 1, 2, 15, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-05-2', 0, 'A2-014-05-2', 0, 1, 1, 2, 15, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-05-3', 0, 'A2-014-05-3', 0, 1, 1, 2, 15, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-06-1', 0, 'A2-014-06-1', 0, 1, 1, 2, 15, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-06-2', 0, 'A2-014-06-2', 0, 1, 1, 2, 15, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-014-06-3', 0, 'A2-014-06-3', 0, 1, 1, 2, 15, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-01-1', 0, 'A2-015-01-1', 0, 1, 1, 2, 16, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-01-2', 0, 'A2-015-01-2', 0, 1, 1, 2, 16, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-01-3', 0, 'A2-015-01-3', 0, 1, 1, 2, 16, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-02-1', 0, 'A2-015-02-1', 0, 1, 1, 2, 16, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-02-2', 0, 'A2-015-02-2', 0, 1, 1, 2, 16, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-02-3', 0, 'A2-015-02-3', 0, 1, 1, 2, 16, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-03-1', 0, 'A2-015-03-1', 0, 1, 1, 2, 16, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-03-2', 0, 'A2-015-03-2', 0, 1, 1, 2, 16, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-03-3', 0, 'A2-015-03-3', 0, 1, 1, 2, 16, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-04-1', 0, 'A2-015-04-1', 0, 1, 1, 2, 16, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-04-2', 0, 'A2-015-04-2', 0, 1, 1, 2, 16, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-04-3', 0, 'A2-015-04-3', 0, 1, 1, 2, 16, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-05-1', 0, 'A2-015-05-1', 0, 1, 1, 2, 16, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-05-2', 0, 'A2-015-05-2', 0, 1, 1, 2, 16, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-05-3', 0, 'A2-015-05-3', 0, 1, 1, 2, 16, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-06-1', 0, 'A2-015-06-1', 0, 1, 1, 2, 16, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-06-2', 0, 'A2-015-06-2', 0, 1, 1, 2, 16, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-015-06-3', 0, 'A2-015-06-3', 0, 1, 1, 2, 16, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-01-1', 0, 'A2-016-01-1', 0, 1, 1, 2, 17, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-01-2', 0, 'A2-016-01-2', 0, 1, 1, 2, 17, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-01-3', 0, 'A2-016-01-3', 0, 1, 1, 2, 17, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-02-1', 0, 'A2-016-02-1', 0, 1, 1, 2, 17, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-02-2', 0, 'A2-016-02-2', 0, 1, 1, 2, 17, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-02-3', 0, 'A2-016-02-3', 0, 1, 1, 2, 17, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-03-1', 0, 'A2-016-03-1', 0, 1, 1, 2, 17, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-03-2', 0, 'A2-016-03-2', 0, 1, 1, 2, 17, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-03-3', 0, 'A2-016-03-3', 0, 1, 1, 2, 17, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-04-1', 0, 'A2-016-04-1', 0, 1, 1, 2, 17, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-04-2', 0, 'A2-016-04-2', 0, 1, 1, 2, 17, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-04-3', 0, 'A2-016-04-3', 0, 1, 1, 2, 17, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-05-1', 0, 'A2-016-05-1', 0, 1, 1, 2, 17, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-05-2', 0, 'A2-016-05-2', 0, 1, 1, 2, 17, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-05-3', 0, 'A2-016-05-3', 0, 1, 1, 2, 17, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-06-1', 0, 'A2-016-06-1', 0, 1, 1, 2, 17, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-06-2', 0, 'A2-016-06-2', 0, 1, 1, 2, 17, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-016-06-3', 0, 'A2-016-06-3', 0, 1, 1, 2, 17, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-01-1', 0, 'A2-017-01-1', 0, 1, 1, 2, 18, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-01-2', 0, 'A2-017-01-2', 0, 1, 1, 2, 18, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-01-3', 0, 'A2-017-01-3', 0, 1, 1, 2, 18, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-02-1', 0, 'A2-017-02-1', 0, 1, 1, 2, 18, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-02-2', 0, 'A2-017-02-2', 0, 1, 1, 2, 18, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-02-3', 0, 'A2-017-02-3', 0, 1, 1, 2, 18, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-03-1', 0, 'A2-017-03-1', 0, 1, 1, 2, 18, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-03-2', 0, 'A2-017-03-2', 0, 1, 1, 2, 18, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-03-3', 0, 'A2-017-03-3', 0, 1, 1, 2, 18, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-04-1', 0, 'A2-017-04-1', 0, 1, 1, 2, 18, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-04-2', 0, 'A2-017-04-2', 0, 1, 1, 2, 18, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-04-3', 0, 'A2-017-04-3', 0, 1, 1, 2, 18, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-05-1', 0, 'A2-017-05-1', 0, 1, 1, 2, 18, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-05-2', 0, 'A2-017-05-2', 0, 1, 1, 2, 18, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-05-3', 0, 'A2-017-05-3', 0, 1, 1, 2, 18, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-06-1', 0, 'A2-017-06-1', 0, 1, 1, 2, 18, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-06-2', 0, 'A2-017-06-2', 0, 1, 1, 2, 18, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-017-06-3', 0, 'A2-017-06-3', 0, 1, 1, 2, 18, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-01-1', 0, 'A2-018-01-1', 0, 1, 1, 2, 19, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-01-2', 0, 'A2-018-01-2', 0, 1, 1, 2, 19, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-01-3', 0, 'A2-018-01-3', 0, 1, 1, 2, 19, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-02-1', 0, 'A2-018-02-1', 0, 1, 1, 2, 19, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-02-2', 0, 'A2-018-02-2', 0, 1, 1, 2, 19, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-02-3', 0, 'A2-018-02-3', 0, 1, 1, 2, 19, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-03-1', 0, 'A2-018-03-1', 0, 1, 1, 2, 19, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-03-2', 0, 'A2-018-03-2', 0, 1, 1, 2, 19, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-03-3', 0, 'A2-018-03-3', 0, 1, 1, 2, 19, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-04-1', 0, 'A2-018-04-1', 0, 1, 1, 2, 19, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-04-2', 0, 'A2-018-04-2', 0, 1, 1, 2, 19, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-04-3', 0, 'A2-018-04-3', 0, 1, 1, 2, 19, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-05-1', 0, 'A2-018-05-1', 0, 1, 1, 2, 19, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-05-2', 0, 'A2-018-05-2', 0, 1, 1, 2, 19, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-05-3', 0, 'A2-018-05-3', 0, 1, 1, 2, 19, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-06-1', 0, 'A2-018-06-1', 0, 1, 1, 2, 19, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-06-2', 0, 'A2-018-06-2', 0, 1, 1, 2, 19, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-018-06-3', 0, 'A2-018-06-3', 0, 1, 1, 2, 19, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-01-1', 0, 'A2-019-01-1', 0, 1, 1, 2, 20, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-01-2', 0, 'A2-019-01-2', 0, 1, 1, 2, 20, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-01-3', 0, 'A2-019-01-3', 0, 1, 1, 2, 20, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-02-1', 0, 'A2-019-02-1', 0, 1, 1, 2, 20, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-02-2', 0, 'A2-019-02-2', 0, 1, 1, 2, 20, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-02-3', 0, 'A2-019-02-3', 0, 1, 1, 2, 20, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-03-1', 0, 'A2-019-03-1', 0, 1, 1, 2, 20, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-03-2', 0, 'A2-019-03-2', 0, 1, 1, 2, 20, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-03-3', 0, 'A2-019-03-3', 0, 1, 1, 2, 20, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-04-1', 0, 'A2-019-04-1', 0, 1, 1, 2, 20, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-04-2', 0, 'A2-019-04-2', 0, 1, 1, 2, 20, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-04-3', 0, 'A2-019-04-3', 0, 1, 1, 2, 20, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-05-1', 0, 'A2-019-05-1', 0, 1, 1, 2, 20, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-05-2', 0, 'A2-019-05-2', 0, 1, 1, 2, 20, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-05-3', 0, 'A2-019-05-3', 0, 1, 1, 2, 20, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-06-1', 0, 'A2-019-06-1', 0, 1, 1, 2, 20, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-06-2', 0, 'A2-019-06-2', 0, 1, 1, 2, 20, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-019-06-3', 0, 'A2-019-06-3', 0, 1, 1, 2, 20, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-01-1', 0, 'A2-020-01-1', 0, 1, 1, 2, 21, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-01-2', 0, 'A2-020-01-2', 0, 1, 1, 2, 21, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-01-3', 0, 'A2-020-01-3', 0, 1, 1, 2, 21, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-02-1', 0, 'A2-020-02-1', 0, 1, 1, 2, 21, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-02-2', 0, 'A2-020-02-2', 0, 1, 1, 2, 21, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-02-3', 0, 'A2-020-02-3', 0, 1, 1, 2, 21, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-03-1', 0, 'A2-020-03-1', 0, 1, 1, 2, 21, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-03-2', 0, 'A2-020-03-2', 0, 1, 1, 2, 21, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-03-3', 0, 'A2-020-03-3', 0, 1, 1, 2, 21, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-04-1', 0, 'A2-020-04-1', 0, 1, 1, 2, 21, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-04-2', 0, 'A2-020-04-2', 0, 1, 1, 2, 21, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-04-3', 0, 'A2-020-04-3', 0, 1, 1, 2, 21, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-05-1', 0, 'A2-020-05-1', 0, 1, 1, 2, 21, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-05-2', 0, 'A2-020-05-2', 0, 1, 1, 2, 21, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-05-3', 0, 'A2-020-05-3', 0, 1, 1, 2, 21, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-06-1', 0, 'A2-020-06-1', 0, 1, 1, 2, 21, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-06-2', 0, 'A2-020-06-2', 0, 1, 1, 2, 21, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-020-06-3', 0, 'A2-020-06-3', 0, 1, 1, 2, 21, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-01-1', 0, 'A2-021-01-1', 0, 1, 1, 2, 22, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-01-2', 0, 'A2-021-01-2', 0, 1, 1, 2, 22, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-01-3', 0, 'A2-021-01-3', 0, 1, 1, 2, 22, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-02-1', 0, 'A2-021-02-1', 0, 1, 1, 2, 22, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-02-2', 0, 'A2-021-02-2', 0, 1, 1, 2, 22, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-02-3', 0, 'A2-021-02-3', 0, 1, 1, 2, 22, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-03-1', 0, 'A2-021-03-1', 0, 1, 1, 2, 22, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-03-2', 0, 'A2-021-03-2', 0, 1, 1, 2, 22, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-03-3', 0, 'A2-021-03-3', 0, 1, 1, 2, 22, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-04-1', 0, 'A2-021-04-1', 0, 1, 1, 2, 22, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-04-2', 0, 'A2-021-04-2', 0, 1, 1, 2, 22, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-04-3', 0, 'A2-021-04-3', 0, 1, 1, 2, 22, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-05-1', 0, 'A2-021-05-1', 0, 1, 1, 2, 22, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-05-2', 0, 'A2-021-05-2', 0, 1, 1, 2, 22, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-05-3', 0, 'A2-021-05-3', 0, 1, 1, 2, 22, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-06-1', 0, 'A2-021-06-1', 0, 1, 1, 2, 22, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-06-2', 0, 'A2-021-06-2', 0, 1, 1, 2, 22, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-021-06-3', 0, 'A2-021-06-3', 0, 1, 1, 2, 22, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-01-1', 0, 'A2-022-01-1', 0, 1, 1, 2, 23, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-01-2', 0, 'A2-022-01-2', 0, 1, 1, 2, 23, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-01-3', 0, 'A2-022-01-3', 0, 1, 1, 2, 23, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-02-1', 0, 'A2-022-02-1', 0, 1, 1, 2, 23, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-02-2', 0, 'A2-022-02-2', 0, 1, 1, 2, 23, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-02-3', 0, 'A2-022-02-3', 0, 1, 1, 2, 23, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-03-1', 0, 'A2-022-03-1', 0, 1, 1, 2, 23, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-03-2', 0, 'A2-022-03-2', 0, 1, 1, 2, 23, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-03-3', 0, 'A2-022-03-3', 0, 1, 1, 2, 23, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-04-1', 0, 'A2-022-04-1', 0, 1, 1, 2, 23, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-04-2', 0, 'A2-022-04-2', 0, 1, 1, 2, 23, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-04-3', 0, 'A2-022-04-3', 0, 1, 1, 2, 23, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-05-1', 0, 'A2-022-05-1', 0, 1, 1, 2, 23, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-05-2', 0, 'A2-022-05-2', 0, 1, 1, 2, 23, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-05-3', 0, 'A2-022-05-3', 0, 1, 1, 2, 23, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-06-1', 0, 'A2-022-06-1', 0, 1, 1, 2, 23, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-06-2', 0, 'A2-022-06-2', 0, 1, 1, 2, 23, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-022-06-3', 0, 'A2-022-06-3', 0, 1, 1, 2, 23, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-01-1', 0, 'A2-023-01-1', 0, 1, 1, 2, 24, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-01-2', 0, 'A2-023-01-2', 0, 1, 1, 2, 24, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-01-3', 0, 'A2-023-01-3', 0, 1, 1, 2, 24, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-02-1', 0, 'A2-023-02-1', 0, 1, 1, 2, 24, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-02-2', 0, 'A2-023-02-2', 0, 1, 1, 2, 24, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-02-3', 0, 'A2-023-02-3', 0, 1, 1, 2, 24, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-03-1', 0, 'A2-023-03-1', 0, 1, 1, 2, 24, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-03-2', 0, 'A2-023-03-2', 0, 1, 1, 2, 24, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-03-3', 0, 'A2-023-03-3', 0, 1, 1, 2, 24, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-04-1', 0, 'A2-023-04-1', 0, 1, 1, 2, 24, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-04-2', 0, 'A2-023-04-2', 0, 1, 1, 2, 24, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-04-3', 0, 'A2-023-04-3', 0, 1, 1, 2, 24, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-05-1', 0, 'A2-023-05-1', 0, 1, 1, 2, 24, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-05-2', 0, 'A2-023-05-2', 0, 1, 1, 2, 24, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-05-3', 0, 'A2-023-05-3', 0, 1, 1, 2, 24, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-06-1', 0, 'A2-023-06-1', 0, 1, 1, 2, 24, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-06-2', 0, 'A2-023-06-2', 0, 1, 1, 2, 24, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-023-06-3', 0, 'A2-023-06-3', 0, 1, 1, 2, 24, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-01-1', 0, 'A2-024-01-1', 0, 1, 1, 2, 25, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-01-2', 0, 'A2-024-01-2', 0, 1, 1, 2, 25, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-01-3', 0, 'A2-024-01-3', 0, 1, 1, 2, 25, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-02-1', 0, 'A2-024-02-1', 0, 1, 1, 2, 25, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-02-2', 0, 'A2-024-02-2', 0, 1, 1, 2, 25, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-02-3', 0, 'A2-024-02-3', 0, 1, 1, 2, 25, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-03-1', 0, 'A2-024-03-1', 0, 1, 1, 2, 25, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-03-2', 0, 'A2-024-03-2', 0, 1, 1, 2, 25, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-03-3', 0, 'A2-024-03-3', 0, 1, 1, 2, 25, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-04-1', 0, 'A2-024-04-1', 0, 1, 1, 2, 25, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-04-2', 0, 'A2-024-04-2', 0, 1, 1, 2, 25, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-04-3', 0, 'A2-024-04-3', 0, 1, 1, 2, 25, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-05-1', 0, 'A2-024-05-1', 0, 1, 1, 2, 25, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-05-2', 0, 'A2-024-05-2', 0, 1, 1, 2, 25, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-05-3', 0, 'A2-024-05-3', 0, 1, 1, 2, 25, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-06-1', 0, 'A2-024-06-1', 0, 1, 1, 2, 25, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-06-2', 0, 'A2-024-06-2', 0, 1, 1, 2, 25, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-024-06-3', 0, 'A2-024-06-3', 0, 1, 1, 2, 25, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-01-1', 0, 'A2-025-01-1', 0, 1, 1, 2, 26, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-01-2', 0, 'A2-025-01-2', 0, 1, 1, 2, 26, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-01-3', 0, 'A2-025-01-3', 0, 1, 1, 2, 26, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-02-1', 0, 'A2-025-02-1', 0, 1, 1, 2, 26, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-02-2', 0, 'A2-025-02-2', 0, 1, 1, 2, 26, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-02-3', 0, 'A2-025-02-3', 0, 1, 1, 2, 26, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-03-1', 0, 'A2-025-03-1', 0, 1, 1, 2, 26, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-03-2', 0, 'A2-025-03-2', 0, 1, 1, 2, 26, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-03-3', 0, 'A2-025-03-3', 0, 1, 1, 2, 26, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-04-1', 0, 'A2-025-04-1', 0, 1, 1, 2, 26, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-04-2', 0, 'A2-025-04-2', 0, 1, 1, 2, 26, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-04-3', 0, 'A2-025-04-3', 0, 1, 1, 2, 26, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-05-1', 0, 'A2-025-05-1', 0, 1, 1, 2, 26, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-05-2', 0, 'A2-025-05-2', 0, 1, 1, 2, 26, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-05-3', 0, 'A2-025-05-3', 0, 1, 1, 2, 26, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-06-1', 0, 'A2-025-06-1', 0, 1, 1, 2, 26, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-06-2', 0, 'A2-025-06-2', 0, 1, 1, 2, 26, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-025-06-3', 0, 'A2-025-06-3', 0, 1, 1, 2, 26, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-01-1', 0, 'A2-026-01-1', 0, 1, 1, 2, 27, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-01-2', 0, 'A2-026-01-2', 0, 1, 1, 2, 27, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-01-3', 0, 'A2-026-01-3', 0, 1, 1, 2, 27, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-02-1', 0, 'A2-026-02-1', 0, 1, 1, 2, 27, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-02-2', 0, 'A2-026-02-2', 0, 1, 1, 2, 27, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-02-3', 0, 'A2-026-02-3', 0, 1, 1, 2, 27, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-03-1', 0, 'A2-026-03-1', 0, 1, 1, 2, 27, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-03-2', 0, 'A2-026-03-2', 0, 1, 1, 2, 27, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-03-3', 0, 'A2-026-03-3', 0, 1, 1, 2, 27, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-04-1', 0, 'A2-026-04-1', 0, 1, 1, 2, 27, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-04-2', 0, 'A2-026-04-2', 0, 1, 1, 2, 27, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-04-3', 0, 'A2-026-04-3', 0, 1, 1, 2, 27, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-05-1', 0, 'A2-026-05-1', 0, 1, 1, 2, 27, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-05-2', 0, 'A2-026-05-2', 0, 1, 1, 2, 27, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-05-3', 0, 'A2-026-05-3', 0, 1, 1, 2, 27, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-06-1', 0, 'A2-026-06-1', 0, 1, 1, 2, 27, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-06-2', 0, 'A2-026-06-2', 0, 1, 1, 2, 27, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-026-06-3', 0, 'A2-026-06-3', 0, 1, 1, 2, 27, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-01-1', 0, 'A2-027-01-1', 0, 1, 1, 2, 28, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-01-2', 0, 'A2-027-01-2', 0, 1, 1, 2, 28, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-01-3', 0, 'A2-027-01-3', 0, 1, 1, 2, 28, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-02-1', 0, 'A2-027-02-1', 0, 1, 1, 2, 28, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-02-2', 0, 'A2-027-02-2', 0, 1, 1, 2, 28, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-02-3', 0, 'A2-027-02-3', 0, 1, 1, 2, 28, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-03-1', 0, 'A2-027-03-1', 0, 1, 1, 2, 28, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-03-2', 0, 'A2-027-03-2', 0, 1, 1, 2, 28, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-03-3', 0, 'A2-027-03-3', 0, 1, 1, 2, 28, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-04-1', 0, 'A2-027-04-1', 0, 1, 1, 2, 28, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-04-2', 0, 'A2-027-04-2', 0, 1, 1, 2, 28, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-04-3', 0, 'A2-027-04-3', 0, 1, 1, 2, 28, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-05-1', 0, 'A2-027-05-1', 0, 1, 1, 2, 28, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-05-2', 0, 'A2-027-05-2', 0, 1, 1, 2, 28, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-05-3', 0, 'A2-027-05-3', 0, 1, 1, 2, 28, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-06-1', 0, 'A2-027-06-1', 0, 1, 1, 2, 28, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-06-2', 0, 'A2-027-06-2', 0, 1, 1, 2, 28, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-027-06-3', 0, 'A2-027-06-3', 0, 1, 1, 2, 28, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-01-1', 0, 'A2-028-01-1', 0, 1, 1, 2, 29, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-01-2', 0, 'A2-028-01-2', 0, 1, 1, 2, 29, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-01-3', 0, 'A2-028-01-3', 0, 1, 1, 2, 29, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-02-1', 0, 'A2-028-02-1', 0, 1, 1, 2, 29, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-02-2', 0, 'A2-028-02-2', 0, 1, 1, 2, 29, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-02-3', 0, 'A2-028-02-3', 0, 1, 1, 2, 29, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-03-1', 0, 'A2-028-03-1', 0, 1, 1, 2, 29, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-03-2', 0, 'A2-028-03-2', 0, 1, 1, 2, 29, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-03-3', 0, 'A2-028-03-3', 0, 1, 1, 2, 29, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-04-1', 0, 'A2-028-04-1', 0, 1, 1, 2, 29, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-04-2', 0, 'A2-028-04-2', 0, 1, 1, 2, 29, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-04-3', 0, 'A2-028-04-3', 0, 1, 1, 2, 29, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-05-1', 0, 'A2-028-05-1', 0, 1, 1, 2, 29, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-05-2', 0, 'A2-028-05-2', 0, 1, 1, 2, 29, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-05-3', 0, 'A2-028-05-3', 0, 1, 1, 2, 29, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-06-1', 0, 'A2-028-06-1', 0, 1, 1, 2, 29, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-06-2', 0, 'A2-028-06-2', 0, 1, 1, 2, 29, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-028-06-3', 0, 'A2-028-06-3', 0, 1, 1, 2, 29, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-01-1', 0, 'A2-029-01-1', 0, 1, 1, 2, 30, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-01-2', 0, 'A2-029-01-2', 0, 1, 1, 2, 30, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-01-3', 0, 'A2-029-01-3', 0, 1, 1, 2, 30, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-02-1', 0, 'A2-029-02-1', 0, 1, 1, 2, 30, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-02-2', 0, 'A2-029-02-2', 0, 1, 1, 2, 30, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-02-3', 0, 'A2-029-02-3', 0, 1, 1, 2, 30, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-03-1', 0, 'A2-029-03-1', 0, 1, 1, 2, 30, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-03-2', 0, 'A2-029-03-2', 0, 1, 1, 2, 30, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-03-3', 0, 'A2-029-03-3', 0, 1, 1, 2, 30, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-04-1', 0, 'A2-029-04-1', 0, 1, 1, 2, 30, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-04-2', 0, 'A2-029-04-2', 0, 1, 1, 2, 30, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-04-3', 0, 'A2-029-04-3', 0, 1, 1, 2, 30, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-05-1', 0, 'A2-029-05-1', 0, 1, 1, 2, 30, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-05-2', 0, 'A2-029-05-2', 0, 1, 1, 2, 30, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-05-3', 0, 'A2-029-05-3', 0, 1, 1, 2, 30, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-06-1', 0, 'A2-029-06-1', 0, 1, 1, 2, 30, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-06-2', 0, 'A2-029-06-2', 0, 1, 1, 2, 30, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-029-06-3', 0, 'A2-029-06-3', 0, 1, 1, 2, 30, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-01-1', 0, 'A2-030-01-1', 0, 1, 1, 2, 31, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-01-2', 0, 'A2-030-01-2', 0, 1, 1, 2, 31, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-01-3', 0, 'A2-030-01-3', 0, 1, 1, 2, 31, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-02-1', 0, 'A2-030-02-1', 0, 1, 1, 2, 31, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-02-2', 0, 'A2-030-02-2', 0, 1, 1, 2, 31, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-02-3', 0, 'A2-030-02-3', 0, 1, 1, 2, 31, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-03-1', 0, 'A2-030-03-1', 0, 1, 1, 2, 31, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-03-2', 0, 'A2-030-03-2', 0, 1, 1, 2, 31, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-03-3', 0, 'A2-030-03-3', 0, 1, 1, 2, 31, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-04-1', 0, 'A2-030-04-1', 0, 1, 1, 2, 31, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-04-2', 0, 'A2-030-04-2', 0, 1, 1, 2, 31, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-04-3', 0, 'A2-030-04-3', 0, 1, 1, 2, 31, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-05-1', 0, 'A2-030-05-1', 0, 1, 1, 2, 31, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-05-2', 0, 'A2-030-05-2', 0, 1, 1, 2, 31, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-05-3', 0, 'A2-030-05-3', 0, 1, 1, 2, 31, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-06-1', 0, 'A2-030-06-1', 0, 1, 1, 2, 31, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-06-2', 0, 'A2-030-06-2', 0, 1, 1, 2, 31, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-030-06-3', 0, 'A2-030-06-3', 0, 1, 1, 2, 31, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-01-1', 0, 'A2-031-01-1', 0, 1, 1, 2, 32, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-01-2', 0, 'A2-031-01-2', 0, 1, 1, 2, 32, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-01-3', 0, 'A2-031-01-3', 0, 1, 1, 2, 32, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-02-1', 0, 'A2-031-02-1', 0, 1, 1, 2, 32, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-02-2', 0, 'A2-031-02-2', 0, 1, 1, 2, 32, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-02-3', 0, 'A2-031-02-3', 0, 1, 1, 2, 32, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-03-1', 0, 'A2-031-03-1', 0, 1, 1, 2, 32, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-03-2', 0, 'A2-031-03-2', 0, 1, 1, 2, 32, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-03-3', 0, 'A2-031-03-3', 0, 1, 1, 2, 32, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-04-1', 0, 'A2-031-04-1', 0, 1, 1, 2, 32, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-04-2', 0, 'A2-031-04-2', 0, 1, 1, 2, 32, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-04-3', 0, 'A2-031-04-3', 0, 1, 1, 2, 32, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-05-1', 0, 'A2-031-05-1', 0, 1, 1, 2, 32, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-05-2', 0, 'A2-031-05-2', 0, 1, 1, 2, 32, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-05-3', 0, 'A2-031-05-3', 0, 1, 1, 2, 32, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-06-1', 0, 'A2-031-06-1', 0, 1, 1, 2, 32, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-06-2', 0, 'A2-031-06-2', 0, 1, 1, 2, 32, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-031-06-3', 0, 'A2-031-06-3', 0, 1, 1, 2, 32, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-01-1', 0, 'A2-032-01-1', 0, 1, 1, 2, 33, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-01-2', 0, 'A2-032-01-2', 0, 1, 1, 2, 33, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-01-3', 0, 'A2-032-01-3', 0, 1, 1, 2, 33, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-02-1', 0, 'A2-032-02-1', 0, 1, 1, 2, 33, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-02-2', 0, 'A2-032-02-2', 0, 1, 1, 2, 33, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-02-3', 0, 'A2-032-02-3', 0, 1, 1, 2, 33, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-03-1', 0, 'A2-032-03-1', 0, 1, 1, 2, 33, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-03-2', 0, 'A2-032-03-2', 0, 1, 1, 2, 33, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-03-3', 0, 'A2-032-03-3', 0, 1, 1, 2, 33, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-04-1', 0, 'A2-032-04-1', 0, 1, 1, 2, 33, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-04-2', 0, 'A2-032-04-2', 0, 1, 1, 2, 33, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-04-3', 0, 'A2-032-04-3', 0, 1, 1, 2, 33, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-05-1', 0, 'A2-032-05-1', 0, 1, 1, 2, 33, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-05-2', 0, 'A2-032-05-2', 0, 1, 1, 2, 33, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-05-3', 0, 'A2-032-05-3', 0, 1, 1, 2, 33, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-06-1', 0, 'A2-032-06-1', 0, 1, 1, 2, 33, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-06-2', 0, 'A2-032-06-2', 0, 1, 1, 2, 33, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-032-06-3', 0, 'A2-032-06-3', 0, 1, 1, 2, 33, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-01-1', 0, 'A2-033-01-1', 0, 1, 1, 2, 34, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-01-2', 0, 'A2-033-01-2', 0, 1, 1, 2, 34, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-01-3', 0, 'A2-033-01-3', 0, 1, 1, 2, 34, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-02-1', 0, 'A2-033-02-1', 0, 1, 1, 2, 34, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-02-2', 0, 'A2-033-02-2', 0, 1, 1, 2, 34, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-02-3', 0, 'A2-033-02-3', 0, 1, 1, 2, 34, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-03-1', 0, 'A2-033-03-1', 0, 1, 1, 2, 34, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-03-2', 0, 'A2-033-03-2', 0, 1, 1, 2, 34, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-03-3', 0, 'A2-033-03-3', 0, 1, 1, 2, 34, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-04-1', 0, 'A2-033-04-1', 0, 1, 1, 2, 34, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-04-2', 0, 'A2-033-04-2', 0, 1, 1, 2, 34, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-04-3', 0, 'A2-033-04-3', 0, 1, 1, 2, 34, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-05-1', 0, 'A2-033-05-1', 0, 1, 1, 2, 34, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-05-2', 0, 'A2-033-05-2', 0, 1, 1, 2, 34, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-05-3', 0, 'A2-033-05-3', 0, 1, 1, 2, 34, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-06-1', 0, 'A2-033-06-1', 0, 1, 1, 2, 34, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-06-2', 0, 'A2-033-06-2', 0, 1, 1, 2, 34, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-033-06-3', 0, 'A2-033-06-3', 0, 1, 1, 2, 34, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-01-1', 0, 'A2-034-01-1', 0, 1, 1, 2, 35, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-01-2', 0, 'A2-034-01-2', 0, 1, 1, 2, 35, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-01-3', 0, 'A2-034-01-3', 0, 1, 1, 2, 35, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-02-1', 0, 'A2-034-02-1', 0, 1, 1, 2, 35, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-02-2', 0, 'A2-034-02-2', 0, 1, 1, 2, 35, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-02-3', 0, 'A2-034-02-3', 0, 1, 1, 2, 35, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-03-1', 0, 'A2-034-03-1', 0, 1, 1, 2, 35, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-03-2', 0, 'A2-034-03-2', 0, 1, 1, 2, 35, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-03-3', 0, 'A2-034-03-3', 0, 1, 1, 2, 35, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-04-1', 0, 'A2-034-04-1', 0, 1, 1, 2, 35, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-04-2', 0, 'A2-034-04-2', 0, 1, 1, 2, 35, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-04-3', 0, 'A2-034-04-3', 0, 1, 1, 2, 35, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-05-1', 0, 'A2-034-05-1', 0, 1, 1, 2, 35, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-05-2', 0, 'A2-034-05-2', 0, 1, 1, 2, 35, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-05-3', 0, 'A2-034-05-3', 0, 1, 1, 2, 35, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-06-1', 0, 'A2-034-06-1', 0, 1, 1, 2, 35, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-06-2', 0, 'A2-034-06-2', 0, 1, 1, 2, 35, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-034-06-3', 0, 'A2-034-06-3', 0, 1, 1, 2, 35, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-01-1', 0, 'A2-035-01-1', 0, 1, 1, 2, 36, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-01-2', 0, 'A2-035-01-2', 0, 1, 1, 2, 36, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-01-3', 0, 'A2-035-01-3', 0, 1, 1, 2, 36, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-02-1', 0, 'A2-035-02-1', 0, 1, 1, 2, 36, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-02-2', 0, 'A2-035-02-2', 0, 1, 1, 2, 36, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-02-3', 0, 'A2-035-02-3', 0, 1, 1, 2, 36, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-03-1', 0, 'A2-035-03-1', 0, 1, 1, 2, 36, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-03-2', 0, 'A2-035-03-2', 0, 1, 1, 2, 36, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-03-3', 0, 'A2-035-03-3', 0, 1, 1, 2, 36, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-04-1', 0, 'A2-035-04-1', 0, 1, 1, 2, 36, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-04-2', 0, 'A2-035-04-2', 0, 1, 1, 2, 36, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-04-3', 0, 'A2-035-04-3', 0, 1, 1, 2, 36, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-05-1', 0, 'A2-035-05-1', 0, 1, 1, 2, 36, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-05-2', 0, 'A2-035-05-2', 0, 1, 1, 2, 36, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-05-3', 0, 'A2-035-05-3', 0, 1, 1, 2, 36, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-06-1', 0, 'A2-035-06-1', 0, 1, 1, 2, 36, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-06-2', 0, 'A2-035-06-2', 0, 1, 1, 2, 36, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-035-06-3', 0, 'A2-035-06-3', 0, 1, 1, 2, 36, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-01-1', 0, 'A2-036-01-1', 0, 1, 1, 2, 37, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-01-2', 0, 'A2-036-01-2', 0, 1, 1, 2, 37, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-01-3', 0, 'A2-036-01-3', 0, 1, 1, 2, 37, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-02-1', 0, 'A2-036-02-1', 0, 1, 1, 2, 37, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-02-2', 0, 'A2-036-02-2', 0, 1, 1, 2, 37, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-02-3', 0, 'A2-036-02-3', 0, 1, 1, 2, 37, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-03-1', 0, 'A2-036-03-1', 0, 1, 1, 2, 37, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-03-2', 0, 'A2-036-03-2', 0, 1, 1, 2, 37, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-03-3', 0, 'A2-036-03-3', 0, 1, 1, 2, 37, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-04-1', 0, 'A2-036-04-1', 0, 1, 1, 2, 37, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-04-2', 0, 'A2-036-04-2', 0, 1, 1, 2, 37, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-04-3', 0, 'A2-036-04-3', 0, 1, 1, 2, 37, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-05-1', 0, 'A2-036-05-1', 0, 1, 1, 2, 37, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-05-2', 0, 'A2-036-05-2', 0, 1, 1, 2, 37, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-05-3', 0, 'A2-036-05-3', 0, 1, 1, 2, 37, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-06-1', 0, 'A2-036-06-1', 0, 1, 1, 2, 37, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-06-2', 0, 'A2-036-06-2', 0, 1, 1, 2, 37, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-036-06-3', 0, 'A2-036-06-3', 0, 1, 1, 2, 37, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-01-1', 0, 'A2-037-01-1', 0, 1, 1, 2, 38, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-01-2', 0, 'A2-037-01-2', 0, 1, 1, 2, 38, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-01-3', 0, 'A2-037-01-3', 0, 1, 1, 2, 38, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-02-1', 0, 'A2-037-02-1', 0, 1, 1, 2, 38, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-02-2', 0, 'A2-037-02-2', 0, 1, 1, 2, 38, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-02-3', 0, 'A2-037-02-3', 0, 1, 1, 2, 38, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-03-1', 0, 'A2-037-03-1', 0, 1, 1, 2, 38, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-03-2', 0, 'A2-037-03-2', 0, 1, 1, 2, 38, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-03-3', 0, 'A2-037-03-3', 0, 1, 1, 2, 38, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-04-1', 0, 'A2-037-04-1', 0, 1, 1, 2, 38, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-04-2', 0, 'A2-037-04-2', 0, 1, 1, 2, 38, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-04-3', 0, 'A2-037-04-3', 0, 1, 1, 2, 38, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-05-1', 0, 'A2-037-05-1', 0, 1, 1, 2, 38, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-05-2', 0, 'A2-037-05-2', 0, 1, 1, 2, 38, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-05-3', 0, 'A2-037-05-3', 0, 1, 1, 2, 38, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-06-1', 0, 'A2-037-06-1', 0, 1, 1, 2, 38, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-06-2', 0, 'A2-037-06-2', 0, 1, 1, 2, 38, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-037-06-3', 0, 'A2-037-06-3', 0, 1, 1, 2, 38, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-01-1', 0, 'A2-038-01-1', 0, 1, 1, 2, 39, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-01-2', 0, 'A2-038-01-2', 0, 1, 1, 2, 39, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-01-3', 0, 'A2-038-01-3', 0, 1, 1, 2, 39, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-02-1', 0, 'A2-038-02-1', 0, 1, 1, 2, 39, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-02-2', 0, 'A2-038-02-2', 0, 1, 1, 2, 39, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-02-3', 0, 'A2-038-02-3', 0, 1, 1, 2, 39, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-03-1', 0, 'A2-038-03-1', 0, 1, 1, 2, 39, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-03-2', 0, 'A2-038-03-2', 0, 1, 1, 2, 39, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-03-3', 0, 'A2-038-03-3', 0, 1, 1, 2, 39, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-04-1', 0, 'A2-038-04-1', 0, 1, 1, 2, 39, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-04-2', 0, 'A2-038-04-2', 0, 1, 1, 2, 39, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-04-3', 0, 'A2-038-04-3', 0, 1, 1, 2, 39, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-05-1', 0, 'A2-038-05-1', 0, 1, 1, 2, 39, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-05-2', 0, 'A2-038-05-2', 0, 1, 1, 2, 39, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-05-3', 0, 'A2-038-05-3', 0, 1, 1, 2, 39, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-06-1', 0, 'A2-038-06-1', 0, 1, 1, 2, 39, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-06-2', 0, 'A2-038-06-2', 0, 1, 1, 2, 39, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-038-06-3', 0, 'A2-038-06-3', 0, 1, 1, 2, 39, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-01-1', 0, 'A2-039-01-1', 0, 1, 1, 2, 40, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-01-2', 0, 'A2-039-01-2', 0, 1, 1, 2, 40, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-01-3', 0, 'A2-039-01-3', 0, 1, 1, 2, 40, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-02-1', 0, 'A2-039-02-1', 0, 1, 1, 2, 40, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-02-2', 0, 'A2-039-02-2', 0, 1, 1, 2, 40, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-02-3', 0, 'A2-039-02-3', 0, 1, 1, 2, 40, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-03-1', 0, 'A2-039-03-1', 0, 1, 1, 2, 40, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-03-2', 0, 'A2-039-03-2', 0, 1, 1, 2, 40, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-03-3', 0, 'A2-039-03-3', 0, 1, 1, 2, 40, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-04-1', 0, 'A2-039-04-1', 0, 1, 1, 2, 40, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-04-2', 0, 'A2-039-04-2', 0, 1, 1, 2, 40, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-04-3', 0, 'A2-039-04-3', 0, 1, 1, 2, 40, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-05-1', 0, 'A2-039-05-1', 0, 1, 1, 2, 40, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-05-2', 0, 'A2-039-05-2', 0, 1, 1, 2, 40, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-05-3', 0, 'A2-039-05-3', 0, 1, 1, 2, 40, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-06-1', 0, 'A2-039-06-1', 0, 1, 1, 2, 40, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-06-2', 0, 'A2-039-06-2', 0, 1, 1, 2, 40, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-039-06-3', 0, 'A2-039-06-3', 0, 1, 1, 2, 40, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-01-1', 0, 'A2-040-01-1', 0, 1, 1, 2, 41, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-01-2', 0, 'A2-040-01-2', 0, 1, 1, 2, 41, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-01-3', 0, 'A2-040-01-3', 0, 1, 1, 2, 41, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-02-1', 0, 'A2-040-02-1', 0, 1, 1, 2, 41, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-02-2', 0, 'A2-040-02-2', 0, 1, 1, 2, 41, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-02-3', 0, 'A2-040-02-3', 0, 1, 1, 2, 41, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-03-1', 0, 'A2-040-03-1', 0, 1, 1, 2, 41, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-03-2', 0, 'A2-040-03-2', 0, 1, 1, 2, 41, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-03-3', 0, 'A2-040-03-3', 0, 1, 1, 2, 41, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-04-1', 0, 'A2-040-04-1', 0, 1, 1, 2, 41, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-04-2', 0, 'A2-040-04-2', 0, 1, 1, 2, 41, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-04-3', 0, 'A2-040-04-3', 0, 1, 1, 2, 41, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-05-1', 0, 'A2-040-05-1', 0, 1, 1, 2, 41, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-05-2', 0, 'A2-040-05-2', 0, 1, 1, 2, 41, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-05-3', 0, 'A2-040-05-3', 0, 1, 1, 2, 41, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-06-1', 0, 'A2-040-06-1', 0, 1, 1, 2, 41, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-06-2', 0, 'A2-040-06-2', 0, 1, 1, 2, 41, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-040-06-3', 0, 'A2-040-06-3', 0, 1, 1, 2, 41, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-01-1', 0, 'A2-041-01-1', 0, 1, 1, 2, 42, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-01-2', 0, 'A2-041-01-2', 0, 1, 1, 2, 42, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-01-3', 0, 'A2-041-01-3', 0, 1, 1, 2, 42, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-02-1', 0, 'A2-041-02-1', 0, 1, 1, 2, 42, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-02-2', 0, 'A2-041-02-2', 0, 1, 1, 2, 42, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-02-3', 0, 'A2-041-02-3', 0, 1, 1, 2, 42, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-03-1', 0, 'A2-041-03-1', 0, 1, 1, 2, 42, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-03-2', 0, 'A2-041-03-2', 0, 1, 1, 2, 42, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-03-3', 0, 'A2-041-03-3', 0, 1, 1, 2, 42, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-04-1', 0, 'A2-041-04-1', 0, 1, 1, 2, 42, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-04-2', 0, 'A2-041-04-2', 0, 1, 1, 2, 42, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-04-3', 0, 'A2-041-04-3', 0, 1, 1, 2, 42, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-05-1', 0, 'A2-041-05-1', 0, 1, 1, 2, 42, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-05-2', 0, 'A2-041-05-2', 0, 1, 1, 2, 42, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-05-3', 0, 'A2-041-05-3', 0, 1, 1, 2, 42, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-06-1', 0, 'A2-041-06-1', 0, 1, 1, 2, 42, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-06-2', 0, 'A2-041-06-2', 0, 1, 1, 2, 42, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-041-06-3', 0, 'A2-041-06-3', 0, 1, 1, 2, 42, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-01-1', 0, 'A2-042-01-1', 0, 1, 1, 2, 43, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-01-2', 0, 'A2-042-01-2', 0, 1, 1, 2, 43, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-01-3', 0, 'A2-042-01-3', 0, 1, 1, 2, 43, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-02-1', 0, 'A2-042-02-1', 0, 1, 1, 2, 43, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-02-2', 0, 'A2-042-02-2', 0, 1, 1, 2, 43, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-02-3', 0, 'A2-042-02-3', 0, 1, 1, 2, 43, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-03-1', 0, 'A2-042-03-1', 0, 1, 1, 2, 43, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-03-2', 0, 'A2-042-03-2', 0, 1, 1, 2, 43, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-03-3', 0, 'A2-042-03-3', 0, 1, 1, 2, 43, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-04-1', 0, 'A2-042-04-1', 0, 1, 1, 2, 43, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-04-2', 0, 'A2-042-04-2', 0, 1, 1, 2, 43, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-04-3', 0, 'A2-042-04-3', 0, 1, 1, 2, 43, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-05-1', 0, 'A2-042-05-1', 0, 1, 1, 2, 43, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-05-2', 0, 'A2-042-05-2', 0, 1, 1, 2, 43, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-05-3', 0, 'A2-042-05-3', 0, 1, 1, 2, 43, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-06-1', 0, 'A2-042-06-1', 0, 1, 1, 2, 43, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-06-2', 0, 'A2-042-06-2', 0, 1, 1, 2, 43, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-042-06-3', 0, 'A2-042-06-3', 0, 1, 1, 2, 43, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-01-1', 0, 'A2-043-01-1', 0, 1, 1, 2, 44, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-01-2', 0, 'A2-043-01-2', 0, 1, 1, 2, 44, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-01-3', 0, 'A2-043-01-3', 0, 1, 1, 2, 44, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-02-1', 0, 'A2-043-02-1', 0, 1, 1, 2, 44, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-02-2', 0, 'A2-043-02-2', 0, 1, 1, 2, 44, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-02-3', 0, 'A2-043-02-3', 0, 1, 1, 2, 44, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-03-1', 0, 'A2-043-03-1', 0, 1, 1, 2, 44, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-03-2', 0, 'A2-043-03-2', 0, 1, 1, 2, 44, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-03-3', 0, 'A2-043-03-3', 0, 1, 1, 2, 44, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-04-1', 0, 'A2-043-04-1', 0, 1, 1, 2, 44, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-04-2', 0, 'A2-043-04-2', 0, 1, 1, 2, 44, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-04-3', 0, 'A2-043-04-3', 0, 1, 1, 2, 44, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-05-1', 0, 'A2-043-05-1', 0, 1, 1, 2, 44, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-05-2', 0, 'A2-043-05-2', 0, 1, 1, 2, 44, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-05-3', 0, 'A2-043-05-3', 0, 1, 1, 2, 44, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-06-1', 0, 'A2-043-06-1', 0, 1, 1, 2, 44, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-06-2', 0, 'A2-043-06-2', 0, 1, 1, 2, 44, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-043-06-3', 0, 'A2-043-06-3', 0, 1, 1, 2, 44, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-01-1', 0, 'A2-044-01-1', 0, 1, 1, 2, 45, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-01-2', 0, 'A2-044-01-2', 0, 1, 1, 2, 45, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-01-3', 0, 'A2-044-01-3', 0, 1, 1, 2, 45, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-02-1', 0, 'A2-044-02-1', 0, 1, 1, 2, 45, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-02-2', 0, 'A2-044-02-2', 0, 1, 1, 2, 45, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-02-3', 0, 'A2-044-02-3', 0, 1, 1, 2, 45, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-03-1', 0, 'A2-044-03-1', 0, 1, 1, 2, 45, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-03-2', 0, 'A2-044-03-2', 0, 1, 1, 2, 45, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-03-3', 0, 'A2-044-03-3', 0, 1, 1, 2, 45, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-04-1', 0, 'A2-044-04-1', 0, 1, 1, 2, 45, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-04-2', 0, 'A2-044-04-2', 0, 1, 1, 2, 45, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-04-3', 0, 'A2-044-04-3', 0, 1, 1, 2, 45, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-05-1', 0, 'A2-044-05-1', 0, 1, 1, 2, 45, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-05-2', 0, 'A2-044-05-2', 0, 1, 1, 2, 45, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-05-3', 0, 'A2-044-05-3', 0, 1, 1, 2, 45, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-06-1', 0, 'A2-044-06-1', 0, 1, 1, 2, 45, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-06-2', 0, 'A2-044-06-2', 0, 1, 1, 2, 45, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-044-06-3', 0, 'A2-044-06-3', 0, 1, 1, 2, 45, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-01-1', 0, 'A2-045-01-1', 0, 1, 1, 2, 46, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-01-2', 0, 'A2-045-01-2', 0, 1, 1, 2, 46, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-01-3', 0, 'A2-045-01-3', 0, 1, 1, 2, 46, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-02-1', 0, 'A2-045-02-1', 0, 1, 1, 2, 46, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-02-2', 0, 'A2-045-02-2', 0, 1, 1, 2, 46, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-02-3', 0, 'A2-045-02-3', 0, 1, 1, 2, 46, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-03-1', 0, 'A2-045-03-1', 0, 1, 1, 2, 46, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-03-2', 0, 'A2-045-03-2', 0, 1, 1, 2, 46, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-03-3', 0, 'A2-045-03-3', 0, 1, 1, 2, 46, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-04-1', 0, 'A2-045-04-1', 0, 1, 1, 2, 46, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-04-2', 0, 'A2-045-04-2', 0, 1, 1, 2, 46, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-04-3', 0, 'A2-045-04-3', 0, 1, 1, 2, 46, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-05-1', 0, 'A2-045-05-1', 0, 1, 1, 2, 46, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-05-2', 0, 'A2-045-05-2', 0, 1, 1, 2, 46, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-05-3', 0, 'A2-045-05-3', 0, 1, 1, 2, 46, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-06-1', 0, 'A2-045-06-1', 0, 1, 1, 2, 46, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-06-2', 0, 'A2-045-06-2', 0, 1, 1, 2, 46, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-045-06-3', 0, 'A2-045-06-3', 0, 1, 1, 2, 46, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-01-1', 0, 'A2-046-01-1', 0, 1, 1, 2, 47, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-01-2', 0, 'A2-046-01-2', 0, 1, 1, 2, 47, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-01-3', 0, 'A2-046-01-3', 0, 1, 1, 2, 47, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-02-1', 0, 'A2-046-02-1', 0, 1, 1, 2, 47, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-02-2', 0, 'A2-046-02-2', 0, 1, 1, 2, 47, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-02-3', 0, 'A2-046-02-3', 0, 1, 1, 2, 47, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-03-1', 0, 'A2-046-03-1', 0, 1, 1, 2, 47, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-03-2', 0, 'A2-046-03-2', 0, 1, 1, 2, 47, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-03-3', 0, 'A2-046-03-3', 0, 1, 1, 2, 47, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-04-1', 0, 'A2-046-04-1', 0, 1, 1, 2, 47, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-04-2', 0, 'A2-046-04-2', 0, 1, 1, 2, 47, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-04-3', 0, 'A2-046-04-3', 0, 1, 1, 2, 47, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-05-1', 0, 'A2-046-05-1', 0, 1, 1, 2, 47, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-05-2', 0, 'A2-046-05-2', 0, 1, 1, 2, 47, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-05-3', 0, 'A2-046-05-3', 0, 1, 1, 2, 47, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-06-1', 0, 'A2-046-06-1', 0, 1, 1, 2, 47, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-06-2', 0, 'A2-046-06-2', 0, 1, 1, 2, 47, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-046-06-3', 0, 'A2-046-06-3', 0, 1, 1, 2, 47, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-01-1', 0, 'A2-047-01-1', 0, 1, 1, 2, 48, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-01-2', 0, 'A2-047-01-2', 0, 1, 1, 2, 48, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-01-3', 0, 'A2-047-01-3', 0, 1, 1, 2, 48, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-02-1', 0, 'A2-047-02-1', 0, 1, 1, 2, 48, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-02-2', 0, 'A2-047-02-2', 0, 1, 1, 2, 48, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-02-3', 0, 'A2-047-02-3', 0, 1, 1, 2, 48, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-03-1', 0, 'A2-047-03-1', 0, 1, 1, 2, 48, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-03-2', 0, 'A2-047-03-2', 0, 1, 1, 2, 48, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-03-3', 0, 'A2-047-03-3', 0, 1, 1, 2, 48, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-04-1', 0, 'A2-047-04-1', 0, 1, 1, 2, 48, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-04-2', 0, 'A2-047-04-2', 0, 1, 1, 2, 48, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-04-3', 0, 'A2-047-04-3', 0, 1, 1, 2, 48, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-05-1', 0, 'A2-047-05-1', 0, 1, 1, 2, 48, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-05-2', 0, 'A2-047-05-2', 0, 1, 1, 2, 48, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-05-3', 0, 'A2-047-05-3', 0, 1, 1, 2, 48, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-06-1', 0, 'A2-047-06-1', 0, 1, 1, 2, 48, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-06-2', 0, 'A2-047-06-2', 0, 1, 1, 2, 48, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-047-06-3', 0, 'A2-047-06-3', 0, 1, 1, 2, 48, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-01-1', 0, 'A2-048-01-1', 0, 1, 1, 2, 49, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-01-2', 0, 'A2-048-01-2', 0, 1, 1, 2, 49, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-01-3', 0, 'A2-048-01-3', 0, 1, 1, 2, 49, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-02-1', 0, 'A2-048-02-1', 0, 1, 1, 2, 49, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-02-2', 0, 'A2-048-02-2', 0, 1, 1, 2, 49, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-02-3', 0, 'A2-048-02-3', 0, 1, 1, 2, 49, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-03-1', 0, 'A2-048-03-1', 0, 1, 1, 2, 49, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-03-2', 0, 'A2-048-03-2', 0, 1, 1, 2, 49, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-03-3', 0, 'A2-048-03-3', 0, 1, 1, 2, 49, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-04-1', 0, 'A2-048-04-1', 0, 1, 1, 2, 49, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-04-2', 0, 'A2-048-04-2', 0, 1, 1, 2, 49, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-04-3', 0, 'A2-048-04-3', 0, 1, 1, 2, 49, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-05-1', 0, 'A2-048-05-1', 0, 1, 1, 2, 49, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-05-2', 0, 'A2-048-05-2', 0, 1, 1, 2, 49, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-05-3', 0, 'A2-048-05-3', 0, 1, 1, 2, 49, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-06-1', 0, 'A2-048-06-1', 0, 1, 1, 2, 49, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-06-2', 0, 'A2-048-06-2', 0, 1, 1, 2, 49, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-048-06-3', 0, 'A2-048-06-3', 0, 1, 1, 2, 49, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-01-1', 0, 'A2-049-01-1', 0, 1, 1, 2, 50, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-01-2', 0, 'A2-049-01-2', 0, 1, 1, 2, 50, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-01-3', 0, 'A2-049-01-3', 0, 1, 1, 2, 50, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-02-1', 0, 'A2-049-02-1', 0, 1, 1, 2, 50, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-02-2', 0, 'A2-049-02-2', 0, 1, 1, 2, 50, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-02-3', 0, 'A2-049-02-3', 0, 1, 1, 2, 50, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-03-1', 0, 'A2-049-03-1', 0, 1, 1, 2, 50, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-03-2', 0, 'A2-049-03-2', 0, 1, 1, 2, 50, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-03-3', 0, 'A2-049-03-3', 0, 1, 1, 2, 50, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-04-1', 0, 'A2-049-04-1', 0, 1, 1, 2, 50, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-04-2', 0, 'A2-049-04-2', 0, 1, 1, 2, 50, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-04-3', 0, 'A2-049-04-3', 0, 1, 1, 2, 50, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-05-1', 0, 'A2-049-05-1', 0, 1, 1, 2, 50, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-05-2', 0, 'A2-049-05-2', 0, 1, 1, 2, 50, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-05-3', 0, 'A2-049-05-3', 0, 1, 1, 2, 50, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-06-1', 0, 'A2-049-06-1', 0, 1, 1, 2, 50, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-06-2', 0, 'A2-049-06-2', 0, 1, 1, 2, 50, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-049-06-3', 0, 'A2-049-06-3', 0, 1, 1, 2, 50, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-01-1', 0, 'A2-050-01-1', 0, 1, 1, 2, 51, 1, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-01-2', 0, 'A2-050-01-2', 0, 1, 1, 2, 51, 1, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-01-3', 0, 'A2-050-01-3', 0, 1, 1, 2, 51, 1, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-02-1', 0, 'A2-050-02-1', 0, 1, 1, 2, 51, 2, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-02-2', 0, 'A2-050-02-2', 0, 1, 1, 2, 51, 2, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-02-3', 0, 'A2-050-02-3', 0, 1, 1, 2, 51, 2, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-03-1', 0, 'A2-050-03-1', 0, 1, 1, 2, 51, 3, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-03-2', 0, 'A2-050-03-2', 0, 1, 1, 2, 51, 3, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-03-3', 0, 'A2-050-03-3', 0, 1, 1, 2, 51, 3, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-04-1', 0, 'A2-050-04-1', 0, 1, 1, 2, 51, 4, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-04-2', 0, 'A2-050-04-2', 0, 1, 1, 2, 51, 4, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-04-3', 0, 'A2-050-04-3', 0, 1, 1, 2, 51, 4, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-05-1', 0, 'A2-050-05-1', 0, 1, 1, 2, 51, 5, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-05-2', 0, 'A2-050-05-2', 0, 1, 1, 2, 51, 5, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-05-3', 0, 'A2-050-05-3', 0, 1, 1, 2, 51, 5, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-06-1', 0, 'A2-050-06-1', 0, 1, 1, 2, 51, 6, 1, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-06-2', 0, 'A2-050-06-2', 0, 1, 1, 2, 51, 6, 2, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('A2-050-06-3', 0, 'A2-050-06-3', 0, 1, 1, 2, 51, 6, 3, NULL, NULL, '2025-10-05 15:25:40', '2025-10-05 15:25:40', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-001-01', 0, 'B2-001-001-01', 0, 2, 1, 1, 3, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-002-01', 0, 'B2-001-002-01', 0, 2, 1, 1, 3, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-003-01', 0, 'B2-001-003-01', 0, 2, 1, 1, 3, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-004-01', 0, 'B2-001-004-01', 0, 2, 1, 1, 3, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-005-01', 0, 'B2-001-005-01', 0, 2, 1, 1, 3, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-006-01', 0, 'B2-001-006-01', 0, 2, 1, 1, 3, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-007-01', 0, 'B2-001-007-01', 0, 2, 1, 1, 3, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-008-01', 0, 'B2-001-008-01', 0, 2, 1, 1, 3, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-009-01', 0, 'B2-001-009-01', 0, 2, 1, 1, 3, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-010-01', 0, 'B2-001-010-01', 0, 2, 1, 1, 3, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-011-01', 0, 'B2-001-011-01', 0, 2, 1, 1, 3, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-001-012-01', 0, 'B2-001-012-01', 0, 2, 1, 1, 3, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-001-01', 0, 'B2-002-001-01', 0, 2, 1, 1, 4, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-002-01', 0, 'B2-002-002-01', 0, 2, 1, 1, 4, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-003-01', 0, 'B2-002-003-01', 0, 2, 1, 1, 4, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-004-01', 0, 'B2-002-004-01', 0, 2, 1, 1, 4, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-005-01', 0, 'B2-002-005-01', 0, 2, 1, 1, 4, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-006-01', 0, 'B2-002-006-01', 0, 2, 1, 1, 4, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-007-01', 0, 'B2-002-007-01', 0, 2, 1, 1, 4, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-008-01', 0, 'B2-002-008-01', 0, 2, 1, 1, 4, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-009-01', 0, 'B2-002-009-01', 0, 2, 1, 1, 4, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-010-01', 0, 'B2-002-010-01', 0, 2, 1, 1, 4, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-011-01', 0, 'B2-002-011-01', 0, 2, 1, 1, 4, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-002-012-01', 0, 'B2-002-012-01', 0, 2, 1, 1, 4, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-001-01', 0, 'B2-003-001-01', 0, 2, 1, 1, 5, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-002-01', 0, 'B2-003-002-01', 0, 2, 1, 1, 5, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-003-01', 0, 'B2-003-003-01', 0, 2, 1, 1, 5, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-004-01', 0, 'B2-003-004-01', 0, 2, 1, 1, 5, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-005-01', 0, 'B2-003-005-01', 0, 2, 1, 1, 5, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-006-01', 0, 'B2-003-006-01', 0, 2, 1, 1, 5, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-007-01', 0, 'B2-003-007-01', 0, 2, 1, 1, 5, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-008-01', 0, 'B2-003-008-01', 0, 2, 1, 1, 5, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-009-01', 0, 'B2-003-009-01', 0, 2, 1, 1, 5, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-010-01', 0, 'B2-003-010-01', 0, 2, 1, 1, 5, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-011-01', 0, 'B2-003-011-01', 0, 2, 1, 1, 5, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-003-012-01', 0, 'B2-003-012-01', 0, 2, 1, 1, 5, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-001-01', 0, 'B2-004-001-01', 0, 2, 1, 1, 6, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-002-01', 0, 'B2-004-002-01', 0, 2, 1, 1, 6, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-003-01', 0, 'B2-004-003-01', 0, 2, 1, 1, 6, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-004-01', 0, 'B2-004-004-01', 0, 2, 1, 1, 6, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-005-01', 0, 'B2-004-005-01', 0, 2, 1, 1, 6, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-006-01', 0, 'B2-004-006-01', 0, 2, 1, 1, 6, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-007-01', 0, 'B2-004-007-01', 0, 2, 1, 1, 6, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-008-01', 0, 'B2-004-008-01', 0, 2, 1, 1, 6, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-009-01', 0, 'B2-004-009-01', 0, 2, 1, 1, 6, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-010-01', 0, 'B2-004-010-01', 0, 2, 1, 1, 6, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-011-01', 0, 'B2-004-011-01', 0, 2, 1, 1, 6, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-004-012-01', 0, 'B2-004-012-01', 0, 2, 1, 1, 6, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-001-01', 0, 'B2-005-001-01', 0, 2, 1, 1, 7, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-002-01', 0, 'B2-005-002-01', 0, 2, 1, 1, 7, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-003-01', 0, 'B2-005-003-01', 0, 2, 1, 1, 7, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-004-01', 0, 'B2-005-004-01', 0, 2, 1, 1, 7, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-005-01', 0, 'B2-005-005-01', 0, 2, 1, 1, 7, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-006-01', 0, 'B2-005-006-01', 0, 2, 1, 1, 7, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-007-01', 0, 'B2-005-007-01', 0, 2, 1, 1, 7, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-008-01', 0, 'B2-005-008-01', 0, 2, 1, 1, 7, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-009-01', 0, 'B2-005-009-01', 0, 2, 1, 1, 7, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-010-01', 0, 'B2-005-010-01', 0, 2, 1, 1, 7, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-011-01', 0, 'B2-005-011-01', 0, 2, 1, 1, 7, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-005-012-01', 0, 'B2-005-012-01', 0, 2, 1, 1, 7, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-001-01', 0, 'B2-006-001-01', 0, 2, 1, 1, 8, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-002-01', 0, 'B2-006-002-01', 0, 2, 1, 1, 8, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-003-01', 0, 'B2-006-003-01', 0, 2, 1, 1, 8, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-004-01', 0, 'B2-006-004-01', 0, 2, 1, 1, 8, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-005-01', 0, 'B2-006-005-01', 0, 2, 1, 1, 8, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-006-01', 0, 'B2-006-006-01', 0, 2, 1, 1, 8, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-007-01', 0, 'B2-006-007-01', 0, 2, 1, 1, 8, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-008-01', 0, 'B2-006-008-01', 0, 2, 1, 1, 8, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-009-01', 0, 'B2-006-009-01', 0, 2, 1, 1, 8, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-010-01', 0, 'B2-006-010-01', 0, 2, 1, 1, 8, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-011-01', 0, 'B2-006-011-01', 0, 2, 1, 1, 8, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-006-012-01', 0, 'B2-006-012-01', 0, 2, 1, 1, 8, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-001-01', 0, 'B2-007-001-01', 0, 2, 1, 1, 9, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-002-01', 0, 'B2-007-002-01', 0, 2, 1, 1, 9, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-003-01', 0, 'B2-007-003-01', 0, 2, 1, 1, 9, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-004-01', 0, 'B2-007-004-01', 0, 2, 1, 1, 9, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-005-01', 0, 'B2-007-005-01', 0, 2, 1, 1, 9, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-006-01', 0, 'B2-007-006-01', 0, 2, 1, 1, 9, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-007-01', 0, 'B2-007-007-01', 0, 2, 1, 1, 9, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-008-01', 0, 'B2-007-008-01', 0, 2, 1, 1, 9, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-009-01', 0, 'B2-007-009-01', 0, 2, 1, 1, 9, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-010-01', 0, 'B2-007-010-01', 0, 2, 1, 1, 9, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-011-01', 0, 'B2-007-011-01', 0, 2, 1, 1, 9, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-007-012-01', 0, 'B2-007-012-01', 0, 2, 1, 1, 9, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-001-01', 0, 'B2-008-001-01', 0, 2, 1, 1, 10, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-002-01', 0, 'B2-008-002-01', 0, 2, 1, 1, 10, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-003-01', 0, 'B2-008-003-01', 0, 2, 1, 1, 10, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-004-01', 0, 'B2-008-004-01', 0, 2, 1, 1, 10, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-005-01', 0, 'B2-008-005-01', 0, 2, 1, 1, 10, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-006-01', 0, 'B2-008-006-01', 0, 2, 1, 1, 10, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-007-01', 0, 'B2-008-007-01', 0, 2, 1, 1, 10, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-008-01', 0, 'B2-008-008-01', 0, 2, 1, 1, 10, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-009-01', 0, 'B2-008-009-01', 0, 2, 1, 1, 10, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-010-01', 0, 'B2-008-010-01', 0, 2, 1, 1, 10, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-011-01', 0, 'B2-008-011-01', 0, 2, 1, 1, 10, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-008-012-01', 0, 'B2-008-012-01', 0, 2, 1, 1, 10, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-001-01', 0, 'B2-009-001-01', 0, 2, 1, 1, 11, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-002-01', 0, 'B2-009-002-01', 0, 2, 1, 1, 11, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-003-01', 0, 'B2-009-003-01', 0, 2, 1, 1, 11, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-004-01', 0, 'B2-009-004-01', 0, 2, 1, 1, 11, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-005-01', 0, 'B2-009-005-01', 0, 2, 1, 1, 11, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-006-01', 0, 'B2-009-006-01', 0, 2, 1, 1, 11, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-007-01', 0, 'B2-009-007-01', 0, 2, 1, 1, 11, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-008-01', 0, 'B2-009-008-01', 0, 2, 1, 1, 11, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-009-01', 0, 'B2-009-009-01', 0, 2, 1, 1, 11, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-010-01', 0, 'B2-009-010-01', 0, 2, 1, 1, 11, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-011-01', 0, 'B2-009-011-01', 0, 2, 1, 1, 11, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-009-012-01', 0, 'B2-009-012-01', 0, 2, 1, 1, 11, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-001-01', 0, 'B2-010-001-01', 0, 2, 1, 1, 12, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-002-01', 0, 'B2-010-002-01', 0, 2, 1, 1, 12, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-003-01', 0, 'B2-010-003-01', 0, 2, 1, 1, 12, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-004-01', 0, 'B2-010-004-01', 0, 2, 1, 1, 12, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-005-01', 0, 'B2-010-005-01', 0, 2, 1, 1, 12, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-006-01', 0, 'B2-010-006-01', 0, 2, 1, 1, 12, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-007-01', 0, 'B2-010-007-01', 0, 2, 1, 1, 12, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-008-01', 0, 'B2-010-008-01', 0, 2, 1, 1, 12, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-009-01', 0, 'B2-010-009-01', 0, 2, 1, 1, 12, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-010-01', 0, 'B2-010-010-01', 0, 2, 1, 1, 12, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-011-01', 0, 'B2-010-011-01', 0, 2, 1, 1, 12, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-010-012-01', 0, 'B2-010-012-01', 0, 2, 1, 1, 12, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-001-01', 0, 'B2-011-001-01', 0, 2, 1, 1, 13, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-002-01', 0, 'B2-011-002-01', 0, 2, 1, 1, 13, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-003-01', 0, 'B2-011-003-01', 0, 2, 1, 1, 13, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-004-01', 0, 'B2-011-004-01', 0, 2, 1, 1, 13, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-005-01', 0, 'B2-011-005-01', 0, 2, 1, 1, 13, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-006-01', 0, 'B2-011-006-01', 0, 2, 1, 1, 13, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-007-01', 0, 'B2-011-007-01', 0, 2, 1, 1, 13, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-008-01', 0, 'B2-011-008-01', 0, 2, 1, 1, 13, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-009-01', 0, 'B2-011-009-01', 0, 2, 1, 1, 13, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-010-01', 0, 'B2-011-010-01', 0, 2, 1, 1, 13, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-011-01', 0, 'B2-011-011-01', 0, 2, 1, 1, 13, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-011-012-01', 0, 'B2-011-012-01', 0, 2, 1, 1, 13, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-001-01', 0, 'B2-012-001-01', 0, 2, 1, 1, 14, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-002-01', 0, 'B2-012-002-01', 0, 2, 1, 1, 14, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-003-01', 0, 'B2-012-003-01', 0, 2, 1, 1, 14, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-004-01', 0, 'B2-012-004-01', 0, 2, 1, 1, 14, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-005-01', 0, 'B2-012-005-01', 0, 2, 1, 1, 14, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-006-01', 0, 'B2-012-006-01', 0, 2, 1, 1, 14, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-007-01', 0, 'B2-012-007-01', 0, 2, 1, 1, 14, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-008-01', 0, 'B2-012-008-01', 0, 2, 1, 1, 14, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-009-01', 0, 'B2-012-009-01', 0, 2, 1, 1, 14, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-010-01', 0, 'B2-012-010-01', 0, 2, 1, 1, 14, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-011-01', 0, 'B2-012-011-01', 0, 2, 1, 1, 14, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-012-012-01', 0, 'B2-012-012-01', 0, 2, 1, 1, 14, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-001-01', 0, 'B2-013-001-01', 0, 2, 1, 1, 15, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-002-01', 0, 'B2-013-002-01', 0, 2, 1, 1, 15, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-003-01', 0, 'B2-013-003-01', 0, 2, 1, 1, 15, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-004-01', 0, 'B2-013-004-01', 0, 2, 1, 1, 15, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-005-01', 0, 'B2-013-005-01', 0, 2, 1, 1, 15, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-006-01', 0, 'B2-013-006-01', 0, 2, 1, 1, 15, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-007-01', 0, 'B2-013-007-01', 0, 2, 1, 1, 15, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-008-01', 0, 'B2-013-008-01', 0, 2, 1, 1, 15, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-009-01', 0, 'B2-013-009-01', 0, 2, 1, 1, 15, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-010-01', 0, 'B2-013-010-01', 0, 2, 1, 1, 15, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-011-01', 0, 'B2-013-011-01', 0, 2, 1, 1, 15, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-013-012-01', 0, 'B2-013-012-01', 0, 2, 1, 1, 15, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-001-01', 0, 'B2-014-001-01', 0, 2, 1, 1, 16, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-002-01', 0, 'B2-014-002-01', 0, 2, 1, 1, 16, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-003-01', 0, 'B2-014-003-01', 0, 2, 1, 1, 16, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-004-01', 0, 'B2-014-004-01', 0, 2, 1, 1, 16, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-005-01', 0, 'B2-014-005-01', 0, 2, 1, 1, 16, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-006-01', 0, 'B2-014-006-01', 0, 2, 1, 1, 16, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-007-01', 0, 'B2-014-007-01', 0, 2, 1, 1, 16, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-008-01', 0, 'B2-014-008-01', 0, 2, 1, 1, 16, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-009-01', 0, 'B2-014-009-01', 0, 2, 1, 1, 16, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-010-01', 0, 'B2-014-010-01', 0, 2, 1, 1, 16, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-011-01', 0, 'B2-014-011-01', 0, 2, 1, 1, 16, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-014-012-01', 0, 'B2-014-012-01', 0, 2, 1, 1, 16, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-001-01', 0, 'B2-015-001-01', 0, 2, 1, 1, 17, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-002-01', 0, 'B2-015-002-01', 0, 2, 1, 1, 17, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-003-01', 0, 'B2-015-003-01', 0, 2, 1, 1, 17, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-004-01', 0, 'B2-015-004-01', 0, 2, 1, 1, 17, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-005-01', 0, 'B2-015-005-01', 0, 2, 1, 1, 17, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-006-01', 0, 'B2-015-006-01', 0, 2, 1, 1, 17, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-007-01', 0, 'B2-015-007-01', 0, 2, 1, 1, 17, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-008-01', 0, 'B2-015-008-01', 0, 2, 1, 1, 17, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-009-01', 0, 'B2-015-009-01', 0, 2, 1, 1, 17, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-010-01', 0, 'B2-015-010-01', 0, 2, 1, 1, 17, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-011-01', 0, 'B2-015-011-01', 0, 2, 1, 1, 17, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-015-012-01', 0, 'B2-015-012-01', 0, 2, 1, 1, 17, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-001-01', 0, 'B2-016-001-01', 0, 2, 1, 1, 18, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-002-01', 0, 'B2-016-002-01', 0, 2, 1, 1, 18, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-003-01', 0, 'B2-016-003-01', 0, 2, 1, 1, 18, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-004-01', 0, 'B2-016-004-01', 0, 2, 1, 1, 18, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-005-01', 0, 'B2-016-005-01', 0, 2, 1, 1, 18, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-006-01', 0, 'B2-016-006-01', 0, 2, 1, 1, 18, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-007-01', 0, 'B2-016-007-01', 0, 2, 1, 1, 18, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-008-01', 0, 'B2-016-008-01', 0, 2, 1, 1, 18, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-009-01', 0, 'B2-016-009-01', 0, 2, 1, 1, 18, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-010-01', 0, 'B2-016-010-01', 0, 2, 1, 1, 18, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-011-01', 0, 'B2-016-011-01', 0, 2, 1, 1, 18, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-016-012-01', 0, 'B2-016-012-01', 0, 2, 1, 1, 18, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-001-01', 0, 'B2-017-001-01', 0, 2, 1, 1, 19, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-002-01', 0, 'B2-017-002-01', 0, 2, 1, 1, 19, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-003-01', 0, 'B2-017-003-01', 0, 2, 1, 1, 19, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-004-01', 0, 'B2-017-004-01', 0, 2, 1, 1, 19, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-005-01', 0, 'B2-017-005-01', 0, 2, 1, 1, 19, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-006-01', 0, 'B2-017-006-01', 0, 2, 1, 1, 19, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-007-01', 0, 'B2-017-007-01', 0, 2, 1, 1, 19, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-008-01', 0, 'B2-017-008-01', 0, 2, 1, 1, 19, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-009-01', 0, 'B2-017-009-01', 0, 2, 1, 1, 19, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-010-01', 0, 'B2-017-010-01', 0, 2, 1, 1, 19, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-011-01', 0, 'B2-017-011-01', 0, 2, 1, 1, 19, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-017-012-01', 0, 'B2-017-012-01', 0, 2, 1, 1, 19, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-001-01', 0, 'B2-018-001-01', 0, 2, 1, 1, 20, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-002-01', 0, 'B2-018-002-01', 0, 2, 1, 1, 20, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-003-01', 0, 'B2-018-003-01', 0, 2, 1, 1, 20, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-004-01', 0, 'B2-018-004-01', 0, 2, 1, 1, 20, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-005-01', 0, 'B2-018-005-01', 0, 2, 1, 1, 20, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-006-01', 0, 'B2-018-006-01', 0, 2, 1, 1, 20, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-007-01', 0, 'B2-018-007-01', 0, 2, 1, 1, 20, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-008-01', 0, 'B2-018-008-01', 0, 2, 1, 1, 20, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-009-01', 0, 'B2-018-009-01', 0, 2, 1, 1, 20, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-010-01', 0, 'B2-018-010-01', 0, 2, 1, 1, 20, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-011-01', 0, 'B2-018-011-01', 0, 2, 1, 1, 20, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-018-012-01', 0, 'B2-018-012-01', 0, 2, 1, 1, 20, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-001-01', 0, 'B2-019-001-01', 0, 2, 1, 1, 21, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-002-01', 0, 'B2-019-002-01', 0, 2, 1, 1, 21, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-003-01', 0, 'B2-019-003-01', 0, 2, 1, 1, 21, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-004-01', 0, 'B2-019-004-01', 0, 2, 1, 1, 21, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-005-01', 0, 'B2-019-005-01', 0, 2, 1, 1, 21, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-006-01', 0, 'B2-019-006-01', 0, 2, 1, 1, 21, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-007-01', 0, 'B2-019-007-01', 0, 2, 1, 1, 21, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-008-01', 0, 'B2-019-008-01', 0, 2, 1, 1, 21, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-009-01', 0, 'B2-019-009-01', 0, 2, 1, 1, 21, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-010-01', 0, 'B2-019-010-01', 0, 2, 1, 1, 21, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-011-01', 0, 'B2-019-011-01', 0, 2, 1, 1, 21, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-019-012-01', 0, 'B2-019-012-01', 0, 2, 1, 1, 21, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-001-01', 0, 'B2-020-001-01', 0, 2, 1, 1, 22, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-002-01', 0, 'B2-020-002-01', 0, 2, 1, 1, 22, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-003-01', 0, 'B2-020-003-01', 0, 2, 1, 1, 22, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-004-01', 0, 'B2-020-004-01', 0, 2, 1, 1, 22, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-005-01', 0, 'B2-020-005-01', 0, 2, 1, 1, 22, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-006-01', 0, 'B2-020-006-01', 0, 2, 1, 1, 22, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-007-01', 0, 'B2-020-007-01', 0, 2, 1, 1, 22, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-008-01', 0, 'B2-020-008-01', 0, 2, 1, 1, 22, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-009-01', 0, 'B2-020-009-01', 0, 2, 1, 1, 22, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-010-01', 0, 'B2-020-010-01', 0, 2, 1, 1, 22, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-011-01', 0, 'B2-020-011-01', 0, 2, 1, 1, 22, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-020-012-01', 0, 'B2-020-012-01', 0, 2, 1, 1, 22, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-001-01', 0, 'B2-021-001-01', 0, 2, 1, 1, 23, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-002-01', 0, 'B2-021-002-01', 0, 2, 1, 1, 23, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-003-01', 0, 'B2-021-003-01', 0, 2, 1, 1, 23, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-004-01', 0, 'B2-021-004-01', 0, 2, 1, 1, 23, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-005-01', 0, 'B2-021-005-01', 0, 2, 1, 1, 23, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-006-01', 0, 'B2-021-006-01', 0, 2, 1, 1, 23, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-007-01', 0, 'B2-021-007-01', 0, 2, 1, 1, 23, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-008-01', 0, 'B2-021-008-01', 0, 2, 1, 1, 23, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-009-01', 0, 'B2-021-009-01', 0, 2, 1, 1, 23, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-010-01', 0, 'B2-021-010-01', 0, 2, 1, 1, 23, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-011-01', 0, 'B2-021-011-01', 0, 2, 1, 1, 23, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-021-012-01', 0, 'B2-021-012-01', 0, 2, 1, 1, 23, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-001-01', 0, 'B2-022-001-01', 0, 2, 1, 1, 24, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-002-01', 0, 'B2-022-002-01', 0, 2, 1, 1, 24, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-003-01', 0, 'B2-022-003-01', 0, 2, 1, 1, 24, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-004-01', 0, 'B2-022-004-01', 0, 2, 1, 1, 24, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-005-01', 0, 'B2-022-005-01', 0, 2, 1, 1, 24, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-006-01', 0, 'B2-022-006-01', 0, 2, 1, 1, 24, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-007-01', 0, 'B2-022-007-01', 0, 2, 1, 1, 24, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-008-01', 0, 'B2-022-008-01', 0, 2, 1, 1, 24, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-009-01', 0, 'B2-022-009-01', 0, 2, 1, 1, 24, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-010-01', 0, 'B2-022-010-01', 0, 2, 1, 1, 24, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-011-01', 0, 'B2-022-011-01', 0, 2, 1, 1, 24, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-022-012-01', 0, 'B2-022-012-01', 0, 2, 1, 1, 24, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-001-01', 0, 'B2-023-001-01', 0, 2, 1, 1, 25, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-002-01', 0, 'B2-023-002-01', 0, 2, 1, 1, 25, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-003-01', 0, 'B2-023-003-01', 0, 2, 1, 1, 25, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-004-01', 0, 'B2-023-004-01', 0, 2, 1, 1, 25, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-005-01', 0, 'B2-023-005-01', 0, 2, 1, 1, 25, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-006-01', 0, 'B2-023-006-01', 0, 2, 1, 1, 25, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-007-01', 0, 'B2-023-007-01', 0, 2, 1, 1, 25, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-008-01', 0, 'B2-023-008-01', 0, 2, 1, 1, 25, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-009-01', 0, 'B2-023-009-01', 0, 2, 1, 1, 25, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-010-01', 0, 'B2-023-010-01', 0, 2, 1, 1, 25, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-011-01', 0, 'B2-023-011-01', 0, 2, 1, 1, 25, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-023-012-01', 0, 'B2-023-012-01', 0, 2, 1, 1, 25, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-001-01', 0, 'B2-024-001-01', 0, 2, 1, 1, 26, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-002-01', 0, 'B2-024-002-01', 0, 2, 1, 1, 26, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-003-01', 0, 'B2-024-003-01', 0, 2, 1, 1, 26, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-004-01', 0, 'B2-024-004-01', 0, 2, 1, 1, 26, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-005-01', 0, 'B2-024-005-01', 0, 2, 1, 1, 26, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-006-01', 0, 'B2-024-006-01', 0, 2, 1, 1, 26, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-007-01', 0, 'B2-024-007-01', 0, 2, 1, 1, 26, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-008-01', 0, 'B2-024-008-01', 0, 2, 1, 1, 26, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-009-01', 0, 'B2-024-009-01', 0, 2, 1, 1, 26, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-010-01', 0, 'B2-024-010-01', 0, 2, 1, 1, 26, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-011-01', 0, 'B2-024-011-01', 0, 2, 1, 1, 26, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-024-012-01', 0, 'B2-024-012-01', 0, 2, 1, 1, 26, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-001-01', 0, 'B2-025-001-01', 0, 2, 1, 1, 27, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-002-01', 0, 'B2-025-002-01', 0, 2, 1, 1, 27, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-003-01', 0, 'B2-025-003-01', 0, 2, 1, 1, 27, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-004-01', 0, 'B2-025-004-01', 0, 2, 1, 1, 27, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-005-01', 0, 'B2-025-005-01', 0, 2, 1, 1, 27, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-006-01', 0, 'B2-025-006-01', 0, 2, 1, 1, 27, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-007-01', 0, 'B2-025-007-01', 0, 2, 1, 1, 27, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-008-01', 0, 'B2-025-008-01', 0, 2, 1, 1, 27, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-009-01', 0, 'B2-025-009-01', 0, 2, 1, 1, 27, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-010-01', 0, 'B2-025-010-01', 0, 2, 1, 1, 27, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-011-01', 0, 'B2-025-011-01', 0, 2, 1, 1, 27, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-025-012-01', 0, 'B2-025-012-01', 0, 2, 1, 1, 27, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-001-01', 0, 'B2-026-001-01', 0, 2, 1, 1, 28, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-002-01', 0, 'B2-026-002-01', 0, 2, 1, 1, 28, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-003-01', 0, 'B2-026-003-01', 0, 2, 1, 1, 28, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-004-01', 0, 'B2-026-004-01', 0, 2, 1, 1, 28, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-005-01', 0, 'B2-026-005-01', 0, 2, 1, 1, 28, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-006-01', 0, 'B2-026-006-01', 0, 2, 1, 1, 28, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-007-01', 0, 'B2-026-007-01', 0, 2, 1, 1, 28, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-008-01', 0, 'B2-026-008-01', 0, 2, 1, 1, 28, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-009-01', 0, 'B2-026-009-01', 0, 2, 1, 1, 28, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-010-01', 0, 'B2-026-010-01', 0, 2, 1, 1, 28, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-011-01', 0, 'B2-026-011-01', 0, 2, 1, 1, 28, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-026-012-01', 0, 'B2-026-012-01', 0, 2, 1, 1, 28, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-001-01', 0, 'B2-027-001-01', 0, 2, 1, 1, 29, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-002-01', 0, 'B2-027-002-01', 0, 2, 1, 1, 29, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-003-01', 0, 'B2-027-003-01', 0, 2, 1, 1, 29, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-004-01', 0, 'B2-027-004-01', 0, 2, 1, 1, 29, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-005-01', 0, 'B2-027-005-01', 0, 2, 1, 1, 29, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-006-01', 0, 'B2-027-006-01', 0, 2, 1, 1, 29, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-007-01', 0, 'B2-027-007-01', 0, 2, 1, 1, 29, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-008-01', 0, 'B2-027-008-01', 0, 2, 1, 1, 29, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-009-01', 0, 'B2-027-009-01', 0, 2, 1, 1, 29, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-010-01', 0, 'B2-027-010-01', 0, 2, 1, 1, 29, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-011-01', 0, 'B2-027-011-01', 0, 2, 1, 1, 29, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-027-012-01', 0, 'B2-027-012-01', 0, 2, 1, 1, 29, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-001-01', 0, 'B2-028-001-01', 0, 2, 1, 1, 30, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-002-01', 0, 'B2-028-002-01', 0, 2, 1, 1, 30, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-003-01', 0, 'B2-028-003-01', 0, 2, 1, 1, 30, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-004-01', 0, 'B2-028-004-01', 0, 2, 1, 1, 30, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-005-01', 0, 'B2-028-005-01', 0, 2, 1, 1, 30, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-006-01', 0, 'B2-028-006-01', 0, 2, 1, 1, 30, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-007-01', 0, 'B2-028-007-01', 0, 2, 1, 1, 30, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-008-01', 0, 'B2-028-008-01', 0, 2, 1, 1, 30, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-009-01', 0, 'B2-028-009-01', 0, 2, 1, 1, 30, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-010-01', 0, 'B2-028-010-01', 0, 2, 1, 1, 30, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-011-01', 0, 'B2-028-011-01', 0, 2, 1, 1, 30, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-028-012-01', 0, 'B2-028-012-01', 0, 2, 1, 1, 30, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-001-01', 0, 'B2-029-001-01', 0, 2, 1, 1, 31, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-002-01', 0, 'B2-029-002-01', 0, 2, 1, 1, 31, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-003-01', 0, 'B2-029-003-01', 0, 2, 1, 1, 31, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-004-01', 0, 'B2-029-004-01', 0, 2, 1, 1, 31, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-005-01', 0, 'B2-029-005-01', 0, 2, 1, 1, 31, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-006-01', 0, 'B2-029-006-01', 0, 2, 1, 1, 31, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-007-01', 0, 'B2-029-007-01', 0, 2, 1, 1, 31, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-008-01', 0, 'B2-029-008-01', 0, 2, 1, 1, 31, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-009-01', 0, 'B2-029-009-01', 0, 2, 1, 1, 31, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-010-01', 0, 'B2-029-010-01', 0, 2, 1, 1, 31, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-011-01', 0, 'B2-029-011-01', 0, 2, 1, 1, 31, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-029-012-01', 0, 'B2-029-012-01', 0, 2, 1, 1, 31, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-001-01', 0, 'B2-030-001-01', 0, 2, 1, 1, 32, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-002-01', 0, 'B2-030-002-01', 0, 2, 1, 1, 32, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-003-01', 0, 'B2-030-003-01', 0, 2, 1, 1, 32, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-004-01', 0, 'B2-030-004-01', 0, 2, 1, 1, 32, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-005-01', 0, 'B2-030-005-01', 0, 2, 1, 1, 32, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-006-01', 0, 'B2-030-006-01', 0, 2, 1, 1, 32, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-007-01', 0, 'B2-030-007-01', 0, 2, 1, 1, 32, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-008-01', 0, 'B2-030-008-01', 0, 2, 1, 1, 32, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-009-01', 0, 'B2-030-009-01', 0, 2, 1, 1, 32, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-010-01', 0, 'B2-030-010-01', 0, 2, 1, 1, 32, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-011-01', 0, 'B2-030-011-01', 0, 2, 1, 1, 32, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-030-012-01', 0, 'B2-030-012-01', 0, 2, 1, 1, 32, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-001-01', 0, 'B2-031-001-01', 0, 2, 1, 1, 33, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-002-01', 0, 'B2-031-002-01', 0, 2, 1, 1, 33, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-003-01', 0, 'B2-031-003-01', 0, 2, 1, 1, 33, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-004-01', 0, 'B2-031-004-01', 0, 2, 1, 1, 33, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-005-01', 0, 'B2-031-005-01', 0, 2, 1, 1, 33, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-006-01', 0, 'B2-031-006-01', 0, 2, 1, 1, 33, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-007-01', 0, 'B2-031-007-01', 0, 2, 1, 1, 33, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-008-01', 0, 'B2-031-008-01', 0, 2, 1, 1, 33, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-009-01', 0, 'B2-031-009-01', 0, 2, 1, 1, 33, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-010-01', 0, 'B2-031-010-01', 0, 2, 1, 1, 33, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-011-01', 0, 'B2-031-011-01', 0, 2, 1, 1, 33, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-031-012-01', 0, 'B2-031-012-01', 0, 2, 1, 1, 33, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-001-01', 0, 'B2-032-001-01', 0, 2, 1, 1, 34, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-002-01', 0, 'B2-032-002-01', 0, 2, 1, 1, 34, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-003-01', 0, 'B2-032-003-01', 0, 2, 1, 1, 34, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-004-01', 0, 'B2-032-004-01', 0, 2, 1, 1, 34, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-005-01', 0, 'B2-032-005-01', 0, 2, 1, 1, 34, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-006-01', 0, 'B2-032-006-01', 0, 2, 1, 1, 34, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-007-01', 0, 'B2-032-007-01', 0, 2, 1, 1, 34, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-008-01', 0, 'B2-032-008-01', 0, 2, 1, 1, 34, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-009-01', 0, 'B2-032-009-01', 0, 2, 1, 1, 34, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-010-01', 0, 'B2-032-010-01', 0, 2, 1, 1, 34, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-011-01', 0, 'B2-032-011-01', 0, 2, 1, 1, 34, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-032-012-01', 0, 'B2-032-012-01', 0, 2, 1, 1, 34, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-001-01', 0, 'B2-033-001-01', 0, 2, 1, 1, 35, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-002-01', 0, 'B2-033-002-01', 0, 2, 1, 1, 35, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-003-01', 0, 'B2-033-003-01', 0, 2, 1, 1, 35, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-004-01', 0, 'B2-033-004-01', 0, 2, 1, 1, 35, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-005-01', 0, 'B2-033-005-01', 0, 2, 1, 1, 35, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-006-01', 0, 'B2-033-006-01', 0, 2, 1, 1, 35, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-007-01', 0, 'B2-033-007-01', 0, 2, 1, 1, 35, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-008-01', 0, 'B2-033-008-01', 0, 2, 1, 1, 35, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-009-01', 0, 'B2-033-009-01', 0, 2, 1, 1, 35, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-010-01', 0, 'B2-033-010-01', 0, 2, 1, 1, 35, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-011-01', 0, 'B2-033-011-01', 0, 2, 1, 1, 35, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-033-012-01', 0, 'B2-033-012-01', 0, 2, 1, 1, 35, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-001-01', 0, 'B2-034-001-01', 0, 2, 1, 1, 36, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-002-01', 0, 'B2-034-002-01', 0, 2, 1, 1, 36, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-003-01', 0, 'B2-034-003-01', 0, 2, 1, 1, 36, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-004-01', 0, 'B2-034-004-01', 0, 2, 1, 1, 36, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-005-01', 0, 'B2-034-005-01', 0, 2, 1, 1, 36, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-006-01', 0, 'B2-034-006-01', 0, 2, 1, 1, 36, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-007-01', 0, 'B2-034-007-01', 0, 2, 1, 1, 36, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-008-01', 0, 'B2-034-008-01', 0, 2, 1, 1, 36, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-009-01', 0, 'B2-034-009-01', 0, 2, 1, 1, 36, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-010-01', 0, 'B2-034-010-01', 0, 2, 1, 1, 36, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-011-01', 0, 'B2-034-011-01', 0, 2, 1, 1, 36, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-034-012-01', 0, 'B2-034-012-01', 0, 2, 1, 1, 36, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-001-01', 0, 'B2-035-001-01', 0, 2, 1, 1, 37, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-002-01', 0, 'B2-035-002-01', 0, 2, 1, 1, 37, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-003-01', 0, 'B2-035-003-01', 0, 2, 1, 1, 37, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-004-01', 0, 'B2-035-004-01', 0, 2, 1, 1, 37, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-005-01', 0, 'B2-035-005-01', 0, 2, 1, 1, 37, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-006-01', 0, 'B2-035-006-01', 0, 2, 1, 1, 37, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-007-01', 0, 'B2-035-007-01', 0, 2, 1, 1, 37, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-008-01', 0, 'B2-035-008-01', 0, 2, 1, 1, 37, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-009-01', 0, 'B2-035-009-01', 0, 2, 1, 1, 37, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-010-01', 0, 'B2-035-010-01', 0, 2, 1, 1, 37, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-011-01', 0, 'B2-035-011-01', 0, 2, 1, 1, 37, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-035-012-01', 0, 'B2-035-012-01', 0, 2, 1, 1, 37, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-001-01', 0, 'B2-036-001-01', 0, 2, 1, 1, 38, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-002-01', 0, 'B2-036-002-01', 0, 2, 1, 1, 38, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-003-01', 0, 'B2-036-003-01', 0, 2, 1, 1, 38, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-004-01', 0, 'B2-036-004-01', 0, 2, 1, 1, 38, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-005-01', 0, 'B2-036-005-01', 0, 2, 1, 1, 38, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-006-01', 0, 'B2-036-006-01', 0, 2, 1, 1, 38, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-007-01', 0, 'B2-036-007-01', 0, 2, 1, 1, 38, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-008-01', 0, 'B2-036-008-01', 0, 2, 1, 1, 38, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-009-01', 0, 'B2-036-009-01', 0, 2, 1, 1, 38, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-010-01', 0, 'B2-036-010-01', 0, 2, 1, 1, 38, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-011-01', 0, 'B2-036-011-01', 0, 2, 1, 1, 38, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-036-012-01', 0, 'B2-036-012-01', 0, 2, 1, 1, 38, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-001-01', 0, 'B2-037-001-01', 0, 2, 1, 1, 39, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-002-01', 0, 'B2-037-002-01', 0, 2, 1, 1, 39, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-003-01', 0, 'B2-037-003-01', 0, 2, 1, 1, 39, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-004-01', 0, 'B2-037-004-01', 0, 2, 1, 1, 39, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-005-01', 0, 'B2-037-005-01', 0, 2, 1, 1, 39, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-006-01', 0, 'B2-037-006-01', 0, 2, 1, 1, 39, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-007-01', 0, 'B2-037-007-01', 0, 2, 1, 1, 39, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-008-01', 0, 'B2-037-008-01', 0, 2, 1, 1, 39, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-009-01', 0, 'B2-037-009-01', 0, 2, 1, 1, 39, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-010-01', 0, 'B2-037-010-01', 0, 2, 1, 1, 39, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-011-01', 0, 'B2-037-011-01', 0, 2, 1, 1, 39, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-037-012-01', 0, 'B2-037-012-01', 0, 2, 1, 1, 39, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-001-01', 0, 'B2-038-001-01', 0, 2, 1, 1, 40, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-002-01', 0, 'B2-038-002-01', 0, 2, 1, 1, 40, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-003-01', 0, 'B2-038-003-01', 0, 2, 1, 1, 40, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-004-01', 0, 'B2-038-004-01', 0, 2, 1, 1, 40, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-005-01', 0, 'B2-038-005-01', 0, 2, 1, 1, 40, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-006-01', 0, 'B2-038-006-01', 0, 2, 1, 1, 40, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-007-01', 0, 'B2-038-007-01', 0, 2, 1, 1, 40, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-008-01', 0, 'B2-038-008-01', 0, 2, 1, 1, 40, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-009-01', 0, 'B2-038-009-01', 0, 2, 1, 1, 40, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-010-01', 0, 'B2-038-010-01', 0, 2, 1, 1, 40, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-011-01', 0, 'B2-038-011-01', 0, 2, 1, 1, 40, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-038-012-01', 0, 'B2-038-012-01', 0, 2, 1, 1, 40, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-001-01', 0, 'B2-039-001-01', 0, 2, 1, 1, 41, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-002-01', 0, 'B2-039-002-01', 0, 2, 1, 1, 41, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-003-01', 0, 'B2-039-003-01', 0, 2, 1, 1, 41, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-004-01', 0, 'B2-039-004-01', 0, 2, 1, 1, 41, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-005-01', 0, 'B2-039-005-01', 0, 2, 1, 1, 41, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-006-01', 0, 'B2-039-006-01', 0, 2, 1, 1, 41, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-007-01', 0, 'B2-039-007-01', 0, 2, 1, 1, 41, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-008-01', 0, 'B2-039-008-01', 0, 2, 1, 1, 41, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-009-01', 0, 'B2-039-009-01', 0, 2, 1, 1, 41, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-010-01', 0, 'B2-039-010-01', 0, 2, 1, 1, 41, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-011-01', 0, 'B2-039-011-01', 0, 2, 1, 1, 41, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-039-012-01', 0, 'B2-039-012-01', 0, 2, 1, 1, 41, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-001-01', 0, 'B2-040-001-01', 0, 2, 1, 1, 42, 1, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-002-01', 0, 'B2-040-002-01', 0, 2, 1, 1, 42, 2, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-003-01', 0, 'B2-040-003-01', 0, 2, 1, 1, 42, 3, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-004-01', 0, 'B2-040-004-01', 0, 2, 1, 1, 42, 4, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-005-01', 0, 'B2-040-005-01', 0, 2, 1, 1, 42, 5, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-006-01', 0, 'B2-040-006-01', 0, 2, 1, 1, 42, 6, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-007-01', 0, 'B2-040-007-01', 0, 2, 1, 1, 42, 7, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-008-01', 0, 'B2-040-008-01', 0, 2, 1, 1, 42, 8, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-009-01', 0, 'B2-040-009-01', 0, 2, 1, 1, 42, 9, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-010-01', 0, 'B2-040-010-01', 0, 2, 1, 1, 42, 10, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-011-01', 0, 'B2-040-011-01', 0, 2, 1, 1, 42, 11, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('B2-040-012-01', 0, 'B2-040-012-01', 0, 2, 1, 1, 42, 12, 1, NULL, NULL, '2025-06-04 14:09:58', '2025-06-04 14:09:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-01-1', 0, 'C1-001-01-1', 0, 1, 2, 1, 1, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-01-2', 0, 'C1-001-01-2', 0, 1, 2, 1, 1, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-02-1', 0, 'C1-001-02-1', 0, 1, 2, 1, 1, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-02-2', 0, 'C1-001-02-2', 0, 1, 2, 1, 1, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-03-1', 0, 'C1-001-03-1', 0, 1, 2, 1, 1, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-03-2', 0, 'C1-001-03-2', 0, 1, 2, 1, 1, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-04-1', 0, 'C1-001-04-1', 0, 1, 2, 1, 1, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-04-2', 0, 'C1-001-04-2', 0, 1, 2, 1, 1, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-05-1', 0, 'C1-001-05-1', 0, 1, 2, 1, 1, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-05-2', 0, 'C1-001-05-2', 0, 1, 2, 1, 1, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-06-1', 0, 'C1-001-06-1', 0, 1, 2, 1, 1, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-06-2', 0, 'C1-001-06-2', 0, 1, 2, 1, 1, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-07-1', 0, 'C1-001-07-1', 0, 1, 2, 1, 1, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-07-2', 0, 'C1-001-07-2', 0, 1, 2, 1, 1, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-08-1', 2, 'C1-001-08-1', 0, 1, 2, 1, 1, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-08-2', 0, 'C1-001-08-2', 0, 1, 2, 1, 1, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-09-1', 0, 'C1-001-09-1', 0, 1, 2, 1, 1, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-09-2', 0, 'C1-001-09-2', 0, 1, 2, 1, 1, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-10-1', 0, 'C1-001-10-1', 0, 1, 2, 1, 1, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-10-2', 9, 'C1-001-10-2', 0, 1, 2, 1, 1, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-11-1', 0, 'C1-001-11-1', 0, 1, 2, 1, 1, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-11-2', 0, 'C1-001-11-2', 0, 1, 2, 1, 1, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-12-1', 2, 'C1-001-12-1', 0, 1, 2, 1, 1, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-12-2', 0, 'C1-001-12-2', 0, 1, 2, 1, 1, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-13-1', 0, 'C1-001-13-1', 0, 1, 2, 1, 1, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-13-2', 0, 'C1-001-13-2', 0, 1, 2, 1, 1, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-14-1', 0, 'C1-001-14-1', 0, 1, 2, 1, 1, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-14-2', 0, 'C1-001-14-2', 0, 1, 2, 1, 1, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-15-1', 0, 'C1-001-15-1', 0, 1, 2, 1, 1, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-001-15-2', 0, 'C1-001-15-2', 0, 1, 2, 1, 1, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-01-1', 0, 'C1-002-01-1', 0, 1, 2, 1, 2, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-01-2', 0, 'C1-002-01-2', 0, 1, 2, 1, 2, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-02-1', 0, 'C1-002-02-1', 0, 1, 2, 1, 2, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-02-2', 0, 'C1-002-02-2', 0, 1, 2, 1, 2, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-03-1', 0, 'C1-002-03-1', 0, 1, 2, 1, 2, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-03-2', 0, 'C1-002-03-2', 0, 1, 2, 1, 2, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-04-1', 0, 'C1-002-04-1', 0, 1, 2, 1, 2, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-04-2', 0, 'C1-002-04-2', 0, 1, 2, 1, 2, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-05-1', 1, 'C1-002-05-1', 0, 1, 2, 1, 2, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-05-2', 0, 'C1-002-05-2', 0, 1, 2, 1, 2, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-06-1', 0, 'C1-002-06-1', 0, 1, 2, 1, 2, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-06-2', 0, 'C1-002-06-2', 0, 1, 2, 1, 2, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-07-1', 0, 'C1-002-07-1', 0, 1, 2, 1, 2, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-07-2', 0, 'C1-002-07-2', 0, 1, 2, 1, 2, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-08-1', 0, 'C1-002-08-1', 0, 1, 2, 1, 2, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-08-2', 0, 'C1-002-08-2', 0, 1, 2, 1, 2, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-09-1', 0, 'C1-002-09-1', 0, 1, 2, 1, 2, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-09-2', 0, 'C1-002-09-2', 0, 1, 2, 1, 2, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-10-1', 0, 'C1-002-10-1', 0, 1, 2, 1, 2, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-10-2', 0, 'C1-002-10-2', 0, 1, 2, 1, 2, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-11-1', 0, 'C1-002-11-1', 0, 1, 2, 1, 2, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-11-2', 0, 'C1-002-11-2', 0, 1, 2, 1, 2, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-12-1', 0, 'C1-002-12-1', 0, 1, 2, 1, 2, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-12-2', 3, 'C1-002-12-2', 0, 1, 2, 1, 2, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-13-1', 0, 'C1-002-13-1', 0, 1, 2, 1, 2, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-13-2', 0, 'C1-002-13-2', 0, 1, 2, 1, 2, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-14-1', 0, 'C1-002-14-1', 0, 1, 2, 1, 2, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-14-2', 0, 'C1-002-14-2', 0, 1, 2, 1, 2, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-15-1', 0, 'C1-002-15-1', 0, 1, 2, 1, 2, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-002-15-2', 0, 'C1-002-15-2', 0, 1, 2, 1, 2, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-01-1', 0, 'C1-003-01-1', 0, 1, 2, 1, 3, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-01-2', 0, 'C1-003-01-2', 0, 1, 2, 1, 3, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-02-1', 0, 'C1-003-02-1', 0, 1, 2, 1, 3, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-02-2', 0, 'C1-003-02-2', 0, 1, 2, 1, 3, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-03-1', 0, 'C1-003-03-1', 0, 1, 2, 1, 3, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-03-2', 0, 'C1-003-03-2', 0, 1, 2, 1, 3, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-04-1', 0, 'C1-003-04-1', 0, 1, 2, 1, 3, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-04-2', 0, 'C1-003-04-2', 0, 1, 2, 1, 3, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-05-1', 0, 'C1-003-05-1', 0, 1, 2, 1, 3, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-05-2', 0, 'C1-003-05-2', 0, 1, 2, 1, 3, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-06-1', 0, 'C1-003-06-1', 0, 1, 2, 1, 3, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-06-2', 0, 'C1-003-06-2', 0, 1, 2, 1, 3, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-07-1', 0, 'C1-003-07-1', 0, 1, 2, 1, 3, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-07-2', 0, 'C1-003-07-2', 0, 1, 2, 1, 3, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-08-1', 0, 'C1-003-08-1', 0, 1, 2, 1, 3, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-08-2', 3, 'C1-003-08-2', 0, 1, 2, 1, 3, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-09-1', 0, 'C1-003-09-1', 0, 1, 2, 1, 3, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-09-2', 0, 'C1-003-09-2', 0, 1, 2, 1, 3, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-10-1', 0, 'C1-003-10-1', 0, 1, 2, 1, 3, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-10-2', 2, 'C1-003-10-2', 0, 1, 2, 1, 3, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-11-1', 0, 'C1-003-11-1', 0, 1, 2, 1, 3, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-11-2', 0, 'C1-003-11-2', 0, 1, 2, 1, 3, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-12-1', 0, 'C1-003-12-1', 0, 1, 2, 1, 3, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-12-2', 0, 'C1-003-12-2', 0, 1, 2, 1, 3, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-13-1', 0, 'C1-003-13-1', 0, 1, 2, 1, 3, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-13-2', 0, 'C1-003-13-2', 0, 1, 2, 1, 3, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-14-1', 0, 'C1-003-14-1', 0, 1, 2, 1, 3, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-14-2', 0, 'C1-003-14-2', 0, 1, 2, 1, 3, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-15-1', 0, 'C1-003-15-1', 0, 1, 2, 1, 3, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-003-15-2', 0, 'C1-003-15-2', 0, 1, 2, 1, 3, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-01-1', 0, 'C1-004-01-1', 0, 1, 2, 1, 4, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-01-2', 0, 'C1-004-01-2', 0, 1, 2, 1, 4, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-02-1', 0, 'C1-004-02-1', 0, 1, 2, 1, 4, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-02-2', 0, 'C1-004-02-2', 0, 1, 2, 1, 4, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-03-1', 0, 'C1-004-03-1', 0, 1, 2, 1, 4, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-03-2', 0, 'C1-004-03-2', 0, 1, 2, 1, 4, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-04-1', 0, 'C1-004-04-1', 0, 1, 2, 1, 4, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-04-2', 0, 'C1-004-04-2', 0, 1, 2, 1, 4, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-05-1', 0, 'C1-004-05-1', 0, 1, 2, 1, 4, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-05-2', 0, 'C1-004-05-2', 0, 1, 2, 1, 4, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-06-1', 0, 'C1-004-06-1', 0, 1, 2, 1, 4, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-06-2', 0, 'C1-004-06-2', 0, 1, 2, 1, 4, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-07-1', 0, 'C1-004-07-1', 0, 1, 2, 1, 4, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-07-2', 0, 'C1-004-07-2', 0, 1, 2, 1, 4, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-08-1', 0, 'C1-004-08-1', 0, 1, 2, 1, 4, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-08-2', 0, 'C1-004-08-2', 0, 1, 2, 1, 4, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-09-1', 0, 'C1-004-09-1', 0, 1, 2, 1, 4, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-09-2', 0, 'C1-004-09-2', 0, 1, 2, 1, 4, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-10-1', 0, 'C1-004-10-1', 0, 1, 2, 1, 4, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-10-2', 0, 'C1-004-10-2', 0, 1, 2, 1, 4, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-11-1', 0, 'C1-004-11-1', 0, 1, 2, 1, 4, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-11-2', 0, 'C1-004-11-2', 0, 1, 2, 1, 4, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-12-1', 0, 'C1-004-12-1', 0, 1, 2, 1, 4, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-12-2', 0, 'C1-004-12-2', 0, 1, 2, 1, 4, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-13-1', 0, 'C1-004-13-1', 0, 1, 2, 1, 4, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-13-2', 0, 'C1-004-13-2', 0, 1, 2, 1, 4, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-14-1', 0, 'C1-004-14-1', 0, 1, 2, 1, 4, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-14-2', 0, 'C1-004-14-2', 0, 1, 2, 1, 4, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-15-1', 0, 'C1-004-15-1', 0, 1, 2, 1, 4, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-004-15-2', 0, 'C1-004-15-2', 0, 1, 2, 1, 4, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-01-1', 0, 'C1-005-01-1', 0, 1, 2, 1, 5, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-01-2', 0, 'C1-005-01-2', 0, 1, 2, 1, 5, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-02-1', 0, 'C1-005-02-1', 0, 1, 2, 1, 5, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-02-2', 0, 'C1-005-02-2', 0, 1, 2, 1, 5, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-03-1', 0, 'C1-005-03-1', 0, 1, 2, 1, 5, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-03-2', 0, 'C1-005-03-2', 0, 1, 2, 1, 5, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-04-1', 0, 'C1-005-04-1', 0, 1, 2, 1, 5, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-04-2', 0, 'C1-005-04-2', 0, 1, 2, 1, 5, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-05-1', 0, 'C1-005-05-1', 0, 1, 2, 1, 5, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-05-2', 0, 'C1-005-05-2', 0, 1, 2, 1, 5, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-06-1', 0, 'C1-005-06-1', 0, 1, 2, 1, 5, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-06-2', 0, 'C1-005-06-2', 0, 1, 2, 1, 5, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-07-1', 0, 'C1-005-07-1', 0, 1, 2, 1, 5, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-07-2', 0, 'C1-005-07-2', 0, 1, 2, 1, 5, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-08-1', 0, 'C1-005-08-1', 0, 1, 2, 1, 5, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-08-2', 0, 'C1-005-08-2', 0, 1, 2, 1, 5, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-09-1', 0, 'C1-005-09-1', 0, 1, 2, 1, 5, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-09-2', 0, 'C1-005-09-2', 0, 1, 2, 1, 5, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-10-1', 0, 'C1-005-10-1', 0, 1, 2, 1, 5, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-10-2', 0, 'C1-005-10-2', 0, 1, 2, 1, 5, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-11-1', 0, 'C1-005-11-1', 0, 1, 2, 1, 5, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-11-2', 0, 'C1-005-11-2', 0, 1, 2, 1, 5, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-12-1', 0, 'C1-005-12-1', 0, 1, 2, 1, 5, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-12-2', 0, 'C1-005-12-2', 0, 1, 2, 1, 5, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-13-1', 0, 'C1-005-13-1', 0, 1, 2, 1, 5, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-13-2', 0, 'C1-005-13-2', 0, 1, 2, 1, 5, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-14-1', 0, 'C1-005-14-1', 0, 1, 2, 1, 5, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-14-2', 0, 'C1-005-14-2', 0, 1, 2, 1, 5, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-15-1', 0, 'C1-005-15-1', 0, 1, 2, 1, 5, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-005-15-2', 0, 'C1-005-15-2', 0, 1, 2, 1, 5, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-01-1', 0, 'C1-006-01-1', 0, 1, 2, 1, 6, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-01-2', 0, 'C1-006-01-2', 0, 1, 2, 1, 6, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-02-1', 0, 'C1-006-02-1', 0, 1, 2, 1, 6, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-02-2', 0, 'C1-006-02-2', 0, 1, 2, 1, 6, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-03-1', 0, 'C1-006-03-1', 0, 1, 2, 1, 6, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-03-2', 0, 'C1-006-03-2', 0, 1, 2, 1, 6, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-04-1', 0, 'C1-006-04-1', 0, 1, 2, 1, 6, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-04-2', 0, 'C1-006-04-2', 0, 1, 2, 1, 6, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-05-1', 0, 'C1-006-05-1', 0, 1, 2, 1, 6, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-05-2', 0, 'C1-006-05-2', 0, 1, 2, 1, 6, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-06-1', 0, 'C1-006-06-1', 0, 1, 2, 1, 6, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-06-2', 0, 'C1-006-06-2', 0, 1, 2, 1, 6, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-07-1', 0, 'C1-006-07-1', 0, 1, 2, 1, 6, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-07-2', 0, 'C1-006-07-2', 0, 1, 2, 1, 6, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-08-1', 0, 'C1-006-08-1', 0, 1, 2, 1, 6, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-08-2', 0, 'C1-006-08-2', 0, 1, 2, 1, 6, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-09-1', 0, 'C1-006-09-1', 0, 1, 2, 1, 6, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-09-2', 0, 'C1-006-09-2', 0, 1, 2, 1, 6, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-10-1', 0, 'C1-006-10-1', 0, 1, 2, 1, 6, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-10-2', 0, 'C1-006-10-2', 0, 1, 2, 1, 6, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-11-1', 0, 'C1-006-11-1', 0, 1, 2, 1, 6, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-11-2', 0, 'C1-006-11-2', 0, 1, 2, 1, 6, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-12-1', 0, 'C1-006-12-1', 0, 1, 2, 1, 6, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-12-2', 0, 'C1-006-12-2', 0, 1, 2, 1, 6, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-13-1', 0, 'C1-006-13-1', 0, 1, 2, 1, 6, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-13-2', 0, 'C1-006-13-2', 0, 1, 2, 1, 6, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-14-1', 0, 'C1-006-14-1', 0, 1, 2, 1, 6, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-14-2', 0, 'C1-006-14-2', 0, 1, 2, 1, 6, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-15-1', 0, 'C1-006-15-1', 0, 1, 2, 1, 6, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-006-15-2', 0, 'C1-006-15-2', 0, 1, 2, 1, 6, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-01-1', 0, 'C1-007-01-1', 0, 1, 2, 1, 7, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-01-2', 0, 'C1-007-01-2', 0, 1, 2, 1, 7, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-02-1', 0, 'C1-007-02-1', 0, 1, 2, 1, 7, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-02-2', 0, 'C1-007-02-2', 0, 1, 2, 1, 7, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-03-1', 0, 'C1-007-03-1', 0, 1, 2, 1, 7, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-03-2', 0, 'C1-007-03-2', 0, 1, 2, 1, 7, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-04-1', 0, 'C1-007-04-1', 0, 1, 2, 1, 7, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-04-2', 0, 'C1-007-04-2', 0, 1, 2, 1, 7, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-05-1', 0, 'C1-007-05-1', 0, 1, 2, 1, 7, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-05-2', 0, 'C1-007-05-2', 0, 1, 2, 1, 7, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-06-1', 0, 'C1-007-06-1', 0, 1, 2, 1, 7, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-06-2', 0, 'C1-007-06-2', 0, 1, 2, 1, 7, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-07-1', 0, 'C1-007-07-1', 0, 1, 2, 1, 7, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-07-2', 0, 'C1-007-07-2', 0, 1, 2, 1, 7, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-08-1', 0, 'C1-007-08-1', 0, 1, 2, 1, 7, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-08-2', 0, 'C1-007-08-2', 0, 1, 2, 1, 7, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-09-1', 0, 'C1-007-09-1', 0, 1, 2, 1, 7, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-09-2', 0, 'C1-007-09-2', 0, 1, 2, 1, 7, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-10-1', 0, 'C1-007-10-1', 0, 1, 2, 1, 7, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-10-2', 0, 'C1-007-10-2', 0, 1, 2, 1, 7, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-11-1', 0, 'C1-007-11-1', 0, 1, 2, 1, 7, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-11-2', 0, 'C1-007-11-2', 0, 1, 2, 1, 7, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-12-1', 0, 'C1-007-12-1', 0, 1, 2, 1, 7, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-12-2', 0, 'C1-007-12-2', 0, 1, 2, 1, 7, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-13-1', 0, 'C1-007-13-1', 0, 1, 2, 1, 7, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-13-2', 0, 'C1-007-13-2', 0, 1, 2, 1, 7, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-14-1', 0, 'C1-007-14-1', 0, 1, 2, 1, 7, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-14-2', 0, 'C1-007-14-2', 0, 1, 2, 1, 7, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-15-1', 0, 'C1-007-15-1', 0, 1, 2, 1, 7, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-007-15-2', 0, 'C1-007-15-2', 0, 1, 2, 1, 7, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-01-1', 0, 'C1-008-01-1', 0, 1, 2, 1, 8, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-01-2', 0, 'C1-008-01-2', 0, 1, 2, 1, 8, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-02-1', 0, 'C1-008-02-1', 0, 1, 2, 1, 8, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-02-2', 0, 'C1-008-02-2', 0, 1, 2, 1, 8, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-03-1', 0, 'C1-008-03-1', 0, 1, 2, 1, 8, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-03-2', 0, 'C1-008-03-2', 0, 1, 2, 1, 8, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-04-1', 0, 'C1-008-04-1', 0, 1, 2, 1, 8, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-04-2', 0, 'C1-008-04-2', 0, 1, 2, 1, 8, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-05-1', 0, 'C1-008-05-1', 0, 1, 2, 1, 8, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-05-2', 0, 'C1-008-05-2', 0, 1, 2, 1, 8, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-06-1', 0, 'C1-008-06-1', 0, 1, 2, 1, 8, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-06-2', 0, 'C1-008-06-2', 0, 1, 2, 1, 8, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-07-1', 0, 'C1-008-07-1', 0, 1, 2, 1, 8, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-07-2', 0, 'C1-008-07-2', 0, 1, 2, 1, 8, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-08-1', 0, 'C1-008-08-1', 0, 1, 2, 1, 8, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-08-2', 0, 'C1-008-08-2', 0, 1, 2, 1, 8, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-09-1', 0, 'C1-008-09-1', 0, 1, 2, 1, 8, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-09-2', 0, 'C1-008-09-2', 0, 1, 2, 1, 8, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-10-1', 0, 'C1-008-10-1', 0, 1, 2, 1, 8, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-10-2', 0, 'C1-008-10-2', 0, 1, 2, 1, 8, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-11-1', 0, 'C1-008-11-1', 0, 1, 2, 1, 8, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-11-2', 0, 'C1-008-11-2', 0, 1, 2, 1, 8, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-12-1', 0, 'C1-008-12-1', 0, 1, 2, 1, 8, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-12-2', 0, 'C1-008-12-2', 0, 1, 2, 1, 8, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-13-1', 0, 'C1-008-13-1', 0, 1, 2, 1, 8, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-13-2', 0, 'C1-008-13-2', 0, 1, 2, 1, 8, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-14-1', 0, 'C1-008-14-1', 0, 1, 2, 1, 8, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-14-2', 0, 'C1-008-14-2', 0, 1, 2, 1, 8, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-15-1', 0, 'C1-008-15-1', 0, 1, 2, 1, 8, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-008-15-2', 0, 'C1-008-15-2', 0, 1, 2, 1, 8, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-01-1', 0, 'C1-009-01-1', 0, 1, 2, 1, 9, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-01-2', 0, 'C1-009-01-2', 0, 1, 2, 1, 9, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-02-1', 0, 'C1-009-02-1', 0, 1, 2, 1, 9, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-02-2', 0, 'C1-009-02-2', 0, 1, 2, 1, 9, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-03-1', 0, 'C1-009-03-1', 0, 1, 2, 1, 9, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-03-2', 0, 'C1-009-03-2', 0, 1, 2, 1, 9, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-04-1', 0, 'C1-009-04-1', 0, 1, 2, 1, 9, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-04-2', 0, 'C1-009-04-2', 0, 1, 2, 1, 9, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-05-1', 0, 'C1-009-05-1', 0, 1, 2, 1, 9, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-05-2', 0, 'C1-009-05-2', 0, 1, 2, 1, 9, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-06-1', 0, 'C1-009-06-1', 0, 1, 2, 1, 9, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-06-2', 0, 'C1-009-06-2', 0, 1, 2, 1, 9, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-07-1', 0, 'C1-009-07-1', 0, 1, 2, 1, 9, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-07-2', 0, 'C1-009-07-2', 0, 1, 2, 1, 9, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-08-1', 0, 'C1-009-08-1', 0, 1, 2, 1, 9, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-08-2', 0, 'C1-009-08-2', 0, 1, 2, 1, 9, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-09-1', 0, 'C1-009-09-1', 0, 1, 2, 1, 9, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-09-2', 0, 'C1-009-09-2', 0, 1, 2, 1, 9, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-10-1', 0, 'C1-009-10-1', 0, 1, 2, 1, 9, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-10-2', 0, 'C1-009-10-2', 0, 1, 2, 1, 9, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-11-1', 0, 'C1-009-11-1', 0, 1, 2, 1, 9, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-11-2', 0, 'C1-009-11-2', 0, 1, 2, 1, 9, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-12-1', 0, 'C1-009-12-1', 0, 1, 2, 1, 9, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-12-2', 0, 'C1-009-12-2', 0, 1, 2, 1, 9, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-13-1', 0, 'C1-009-13-1', 0, 1, 2, 1, 9, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-13-2', 0, 'C1-009-13-2', 0, 1, 2, 1, 9, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-14-1', 0, 'C1-009-14-1', 0, 1, 2, 1, 9, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-14-2', 0, 'C1-009-14-2', 0, 1, 2, 1, 9, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-15-1', 0, 'C1-009-15-1', 0, 1, 2, 1, 9, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-009-15-2', 0, 'C1-009-15-2', 0, 1, 2, 1, 9, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-01-1', 0, 'C1-010-01-1', 0, 1, 2, 1, 10, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-01-2', 0, 'C1-010-01-2', 0, 1, 2, 1, 10, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-02-1', 0, 'C1-010-02-1', 0, 1, 2, 1, 10, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-02-2', 0, 'C1-010-02-2', 0, 1, 2, 1, 10, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-03-1', 0, 'C1-010-03-1', 0, 1, 2, 1, 10, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-03-2', 0, 'C1-010-03-2', 0, 1, 2, 1, 10, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-04-1', 0, 'C1-010-04-1', 0, 1, 2, 1, 10, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-04-2', 0, 'C1-010-04-2', 0, 1, 2, 1, 10, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-05-1', 0, 'C1-010-05-1', 0, 1, 2, 1, 10, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-05-2', 0, 'C1-010-05-2', 0, 1, 2, 1, 10, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-06-1', 0, 'C1-010-06-1', 0, 1, 2, 1, 10, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-06-2', 0, 'C1-010-06-2', 0, 1, 2, 1, 10, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-07-1', 0, 'C1-010-07-1', 0, 1, 2, 1, 10, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-07-2', 0, 'C1-010-07-2', 0, 1, 2, 1, 10, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-08-1', 0, 'C1-010-08-1', 0, 1, 2, 1, 10, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-08-2', 0, 'C1-010-08-2', 0, 1, 2, 1, 10, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-09-1', 0, 'C1-010-09-1', 0, 1, 2, 1, 10, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-09-2', 0, 'C1-010-09-2', 0, 1, 2, 1, 10, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-10-1', 0, 'C1-010-10-1', 0, 1, 2, 1, 10, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-10-2', 0, 'C1-010-10-2', 0, 1, 2, 1, 10, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-11-1', 0, 'C1-010-11-1', 0, 1, 2, 1, 10, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-11-2', 0, 'C1-010-11-2', 0, 1, 2, 1, 10, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-12-1', 0, 'C1-010-12-1', 0, 1, 2, 1, 10, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-12-2', 0, 'C1-010-12-2', 0, 1, 2, 1, 10, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-13-1', 0, 'C1-010-13-1', 0, 1, 2, 1, 10, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-13-2', 0, 'C1-010-13-2', 0, 1, 2, 1, 10, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-14-1', 0, 'C1-010-14-1', 0, 1, 2, 1, 10, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-14-2', 0, 'C1-010-14-2', 0, 1, 2, 1, 10, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-15-1', 0, 'C1-010-15-1', 0, 1, 2, 1, 10, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-010-15-2', 0, 'C1-010-15-2', 0, 1, 2, 1, 10, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-01-1', 0, 'C1-011-01-1', 0, 1, 2, 1, 11, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-01-2', 0, 'C1-011-01-2', 0, 1, 2, 1, 11, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-02-1', 0, 'C1-011-02-1', 0, 1, 2, 1, 11, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-02-2', 0, 'C1-011-02-2', 0, 1, 2, 1, 11, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-03-1', 0, 'C1-011-03-1', 0, 1, 2, 1, 11, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-03-2', 0, 'C1-011-03-2', 0, 1, 2, 1, 11, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-04-1', 0, 'C1-011-04-1', 0, 1, 2, 1, 11, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-04-2', 0, 'C1-011-04-2', 0, 1, 2, 1, 11, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-05-1', 0, 'C1-011-05-1', 0, 1, 2, 1, 11, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-05-2', 0, 'C1-011-05-2', 0, 1, 2, 1, 11, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-06-1', 0, 'C1-011-06-1', 0, 1, 2, 1, 11, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-06-2', 0, 'C1-011-06-2', 0, 1, 2, 1, 11, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-07-1', 0, 'C1-011-07-1', 0, 1, 2, 1, 11, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-07-2', 0, 'C1-011-07-2', 0, 1, 2, 1, 11, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-08-1', 0, 'C1-011-08-1', 0, 1, 2, 1, 11, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-08-2', 0, 'C1-011-08-2', 0, 1, 2, 1, 11, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-09-1', 0, 'C1-011-09-1', 0, 1, 2, 1, 11, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-09-2', 0, 'C1-011-09-2', 0, 1, 2, 1, 11, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-10-1', 0, 'C1-011-10-1', 0, 1, 2, 1, 11, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-10-2', 0, 'C1-011-10-2', 0, 1, 2, 1, 11, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-11-1', 0, 'C1-011-11-1', 0, 1, 2, 1, 11, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-11-2', 0, 'C1-011-11-2', 0, 1, 2, 1, 11, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-12-1', 0, 'C1-011-12-1', 0, 1, 2, 1, 11, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-12-2', 0, 'C1-011-12-2', 0, 1, 2, 1, 11, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-13-1', 0, 'C1-011-13-1', 0, 1, 2, 1, 11, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-13-2', 0, 'C1-011-13-2', 0, 1, 2, 1, 11, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-14-1', 0, 'C1-011-14-1', 0, 1, 2, 1, 11, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-14-2', 0, 'C1-011-14-2', 0, 1, 2, 1, 11, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-15-1', 0, 'C1-011-15-1', 0, 1, 2, 1, 11, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-011-15-2', 0, 'C1-011-15-2', 0, 1, 2, 1, 11, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-01-1', 0, 'C1-012-01-1', 0, 1, 2, 1, 12, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-01-2', 0, 'C1-012-01-2', 0, 1, 2, 1, 12, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-02-1', 0, 'C1-012-02-1', 0, 1, 2, 1, 12, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-02-2', 0, 'C1-012-02-2', 0, 1, 2, 1, 12, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-03-1', 0, 'C1-012-03-1', 0, 1, 2, 1, 12, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-03-2', 0, 'C1-012-03-2', 0, 1, 2, 1, 12, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-04-1', 0, 'C1-012-04-1', 0, 1, 2, 1, 12, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-04-2', 0, 'C1-012-04-2', 0, 1, 2, 1, 12, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-05-1', 0, 'C1-012-05-1', 0, 1, 2, 1, 12, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-05-2', 0, 'C1-012-05-2', 0, 1, 2, 1, 12, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-06-1', 0, 'C1-012-06-1', 0, 1, 2, 1, 12, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-06-2', 0, 'C1-012-06-2', 0, 1, 2, 1, 12, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-07-1', 0, 'C1-012-07-1', 0, 1, 2, 1, 12, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-07-2', 0, 'C1-012-07-2', 0, 1, 2, 1, 12, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-08-1', 0, 'C1-012-08-1', 0, 1, 2, 1, 12, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-08-2', 0, 'C1-012-08-2', 0, 1, 2, 1, 12, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-09-1', 0, 'C1-012-09-1', 0, 1, 2, 1, 12, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-09-2', 0, 'C1-012-09-2', 0, 1, 2, 1, 12, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-10-1', 0, 'C1-012-10-1', 0, 1, 2, 1, 12, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-10-2', 0, 'C1-012-10-2', 0, 1, 2, 1, 12, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-11-1', 0, 'C1-012-11-1', 0, 1, 2, 1, 12, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-11-2', 0, 'C1-012-11-2', 0, 1, 2, 1, 12, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-12-1', 0, 'C1-012-12-1', 0, 1, 2, 1, 12, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-12-2', 0, 'C1-012-12-2', 0, 1, 2, 1, 12, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-13-1', 0, 'C1-012-13-1', 0, 1, 2, 1, 12, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-13-2', 0, 'C1-012-13-2', 0, 1, 2, 1, 12, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-14-1', 0, 'C1-012-14-1', 0, 1, 2, 1, 12, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-14-2', 0, 'C1-012-14-2', 0, 1, 2, 1, 12, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-15-1', 0, 'C1-012-15-1', 0, 1, 2, 1, 12, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-012-15-2', 0, 'C1-012-15-2', 0, 1, 2, 1, 12, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-01-1', 0, 'C1-013-01-1', 0, 1, 2, 1, 13, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-01-2', 0, 'C1-013-01-2', 0, 1, 2, 1, 13, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-02-1', 0, 'C1-013-02-1', 0, 1, 2, 1, 13, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-02-2', 0, 'C1-013-02-2', 0, 1, 2, 1, 13, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-03-1', 0, 'C1-013-03-1', 0, 1, 2, 1, 13, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-03-2', 0, 'C1-013-03-2', 0, 1, 2, 1, 13, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-04-1', 0, 'C1-013-04-1', 0, 1, 2, 1, 13, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-04-2', 0, 'C1-013-04-2', 0, 1, 2, 1, 13, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-05-1', 0, 'C1-013-05-1', 0, 1, 2, 1, 13, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-05-2', 0, 'C1-013-05-2', 0, 1, 2, 1, 13, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-06-1', 0, 'C1-013-06-1', 0, 1, 2, 1, 13, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-06-2', 0, 'C1-013-06-2', 0, 1, 2, 1, 13, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-07-1', 0, 'C1-013-07-1', 0, 1, 2, 1, 13, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-07-2', 0, 'C1-013-07-2', 0, 1, 2, 1, 13, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-08-1', 0, 'C1-013-08-1', 0, 1, 2, 1, 13, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-08-2', 0, 'C1-013-08-2', 0, 1, 2, 1, 13, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-09-1', 0, 'C1-013-09-1', 0, 1, 2, 1, 13, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-09-2', 0, 'C1-013-09-2', 0, 1, 2, 1, 13, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-10-1', 0, 'C1-013-10-1', 0, 1, 2, 1, 13, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-10-2', 0, 'C1-013-10-2', 0, 1, 2, 1, 13, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-11-1', 0, 'C1-013-11-1', 0, 1, 2, 1, 13, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-11-2', 0, 'C1-013-11-2', 0, 1, 2, 1, 13, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-12-1', 0, 'C1-013-12-1', 0, 1, 2, 1, 13, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-12-2', 0, 'C1-013-12-2', 0, 1, 2, 1, 13, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-13-1', 0, 'C1-013-13-1', 0, 1, 2, 1, 13, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-13-2', 0, 'C1-013-13-2', 0, 1, 2, 1, 13, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-14-1', 0, 'C1-013-14-1', 0, 1, 2, 1, 13, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-14-2', 0, 'C1-013-14-2', 0, 1, 2, 1, 13, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-15-1', 0, 'C1-013-15-1', 0, 1, 2, 1, 13, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-013-15-2', 0, 'C1-013-15-2', 0, 1, 2, 1, 13, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-01-1', 0, 'C1-014-01-1', 0, 1, 2, 1, 14, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-01-2', 0, 'C1-014-01-2', 0, 1, 2, 1, 14, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-02-1', 0, 'C1-014-02-1', 0, 1, 2, 1, 14, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-02-2', 0, 'C1-014-02-2', 0, 1, 2, 1, 14, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-03-1', 0, 'C1-014-03-1', 0, 1, 2, 1, 14, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-03-2', 0, 'C1-014-03-2', 0, 1, 2, 1, 14, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-04-1', 0, 'C1-014-04-1', 0, 1, 2, 1, 14, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-04-2', 0, 'C1-014-04-2', 0, 1, 2, 1, 14, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-05-1', 0, 'C1-014-05-1', 0, 1, 2, 1, 14, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-05-2', 0, 'C1-014-05-2', 0, 1, 2, 1, 14, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-06-1', 0, 'C1-014-06-1', 0, 1, 2, 1, 14, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-06-2', 0, 'C1-014-06-2', 0, 1, 2, 1, 14, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-07-1', 0, 'C1-014-07-1', 0, 1, 2, 1, 14, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-07-2', 0, 'C1-014-07-2', 0, 1, 2, 1, 14, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-08-1', 0, 'C1-014-08-1', 0, 1, 2, 1, 14, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-08-2', 0, 'C1-014-08-2', 0, 1, 2, 1, 14, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-09-1', 0, 'C1-014-09-1', 0, 1, 2, 1, 14, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-09-2', 0, 'C1-014-09-2', 0, 1, 2, 1, 14, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-10-1', 0, 'C1-014-10-1', 0, 1, 2, 1, 14, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-10-2', 0, 'C1-014-10-2', 0, 1, 2, 1, 14, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-11-1', 0, 'C1-014-11-1', 0, 1, 2, 1, 14, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-11-2', 0, 'C1-014-11-2', 0, 1, 2, 1, 14, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-12-1', 0, 'C1-014-12-1', 0, 1, 2, 1, 14, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-12-2', 0, 'C1-014-12-2', 0, 1, 2, 1, 14, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-13-1', 0, 'C1-014-13-1', 0, 1, 2, 1, 14, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-13-2', 0, 'C1-014-13-2', 0, 1, 2, 1, 14, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-14-1', 0, 'C1-014-14-1', 0, 1, 2, 1, 14, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-14-2', 0, 'C1-014-14-2', 0, 1, 2, 1, 14, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-15-1', 0, 'C1-014-15-1', 0, 1, 2, 1, 14, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-014-15-2', 0, 'C1-014-15-2', 0, 1, 2, 1, 14, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-01-1', 0, 'C1-015-01-1', 0, 1, 2, 1, 15, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-01-2', 0, 'C1-015-01-2', 0, 1, 2, 1, 15, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-02-1', 0, 'C1-015-02-1', 0, 1, 2, 1, 15, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-02-2', 0, 'C1-015-02-2', 0, 1, 2, 1, 15, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-03-1', 0, 'C1-015-03-1', 0, 1, 2, 1, 15, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-03-2', 0, 'C1-015-03-2', 0, 1, 2, 1, 15, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-04-1', 0, 'C1-015-04-1', 0, 1, 2, 1, 15, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-04-2', 0, 'C1-015-04-2', 0, 1, 2, 1, 15, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-05-1', 0, 'C1-015-05-1', 0, 1, 2, 1, 15, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-05-2', 0, 'C1-015-05-2', 0, 1, 2, 1, 15, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-06-1', 0, 'C1-015-06-1', 0, 1, 2, 1, 15, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-06-2', 0, 'C1-015-06-2', 0, 1, 2, 1, 15, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-07-1', 0, 'C1-015-07-1', 0, 1, 2, 1, 15, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-07-2', 0, 'C1-015-07-2', 0, 1, 2, 1, 15, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-08-1', 0, 'C1-015-08-1', 0, 1, 2, 1, 15, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-08-2', 0, 'C1-015-08-2', 0, 1, 2, 1, 15, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-09-1', 0, 'C1-015-09-1', 0, 1, 2, 1, 15, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-09-2', 0, 'C1-015-09-2', 0, 1, 2, 1, 15, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-10-1', 0, 'C1-015-10-1', 0, 1, 2, 1, 15, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-10-2', 0, 'C1-015-10-2', 0, 1, 2, 1, 15, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-11-1', 0, 'C1-015-11-1', 0, 1, 2, 1, 15, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-11-2', 0, 'C1-015-11-2', 0, 1, 2, 1, 15, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-12-1', 0, 'C1-015-12-1', 0, 1, 2, 1, 15, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-12-2', 0, 'C1-015-12-2', 0, 1, 2, 1, 15, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-13-1', 0, 'C1-015-13-1', 0, 1, 2, 1, 15, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-13-2', 0, 'C1-015-13-2', 0, 1, 2, 1, 15, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-14-1', 0, 'C1-015-14-1', 0, 1, 2, 1, 15, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-14-2', 0, 'C1-015-14-2', 0, 1, 2, 1, 15, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-15-1', 0, 'C1-015-15-1', 0, 1, 2, 1, 15, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-015-15-2', 0, 'C1-015-15-2', 0, 1, 2, 1, 15, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-01-1', 0, 'C1-016-01-1', 0, 1, 2, 1, 16, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-01-2', 0, 'C1-016-01-2', 0, 1, 2, 1, 16, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-02-1', 0, 'C1-016-02-1', 0, 1, 2, 1, 16, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-02-2', 0, 'C1-016-02-2', 0, 1, 2, 1, 16, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-03-1', 0, 'C1-016-03-1', 0, 1, 2, 1, 16, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-03-2', 0, 'C1-016-03-2', 0, 1, 2, 1, 16, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-04-1', 0, 'C1-016-04-1', 0, 1, 2, 1, 16, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-04-2', 0, 'C1-016-04-2', 0, 1, 2, 1, 16, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-05-1', 0, 'C1-016-05-1', 0, 1, 2, 1, 16, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-05-2', 0, 'C1-016-05-2', 0, 1, 2, 1, 16, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-06-1', 0, 'C1-016-06-1', 0, 1, 2, 1, 16, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-06-2', 0, 'C1-016-06-2', 0, 1, 2, 1, 16, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-07-1', 0, 'C1-016-07-1', 0, 1, 2, 1, 16, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-07-2', 0, 'C1-016-07-2', 0, 1, 2, 1, 16, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-08-1', 0, 'C1-016-08-1', 0, 1, 2, 1, 16, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-08-2', 0, 'C1-016-08-2', 0, 1, 2, 1, 16, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-09-1', 0, 'C1-016-09-1', 0, 1, 2, 1, 16, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-09-2', 0, 'C1-016-09-2', 0, 1, 2, 1, 16, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-10-1', 0, 'C1-016-10-1', 0, 1, 2, 1, 16, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-10-2', 0, 'C1-016-10-2', 0, 1, 2, 1, 16, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-11-1', 0, 'C1-016-11-1', 0, 1, 2, 1, 16, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-11-2', 0, 'C1-016-11-2', 0, 1, 2, 1, 16, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-12-1', 0, 'C1-016-12-1', 0, 1, 2, 1, 16, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-12-2', 0, 'C1-016-12-2', 0, 1, 2, 1, 16, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-13-1', 0, 'C1-016-13-1', 0, 1, 2, 1, 16, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-13-2', 0, 'C1-016-13-2', 0, 1, 2, 1, 16, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-14-1', 0, 'C1-016-14-1', 0, 1, 2, 1, 16, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-14-2', 0, 'C1-016-14-2', 0, 1, 2, 1, 16, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-15-1', 1, 'C1-016-15-1', 0, 1, 2, 1, 16, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-016-15-2', 0, 'C1-016-15-2', 0, 1, 2, 1, 16, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-01-1', 0, 'C1-017-01-1', 0, 1, 2, 1, 17, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-01-2', 0, 'C1-017-01-2', 0, 1, 2, 1, 17, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-02-1', 0, 'C1-017-02-1', 0, 1, 2, 1, 17, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-02-2', 0, 'C1-017-02-2', 0, 1, 2, 1, 17, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-03-1', 0, 'C1-017-03-1', 0, 1, 2, 1, 17, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-03-2', 0, 'C1-017-03-2', 0, 1, 2, 1, 17, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-04-1', 0, 'C1-017-04-1', 0, 1, 2, 1, 17, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-04-2', 0, 'C1-017-04-2', 0, 1, 2, 1, 17, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-05-1', 0, 'C1-017-05-1', 0, 1, 2, 1, 17, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-05-2', 0, 'C1-017-05-2', 0, 1, 2, 1, 17, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-06-1', 0, 'C1-017-06-1', 0, 1, 2, 1, 17, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-06-2', 0, 'C1-017-06-2', 0, 1, 2, 1, 17, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-07-1', 0, 'C1-017-07-1', 0, 1, 2, 1, 17, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-07-2', 0, 'C1-017-07-2', 0, 1, 2, 1, 17, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-08-1', 0, 'C1-017-08-1', 0, 1, 2, 1, 17, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-08-2', 0, 'C1-017-08-2', 0, 1, 2, 1, 17, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-09-1', 0, 'C1-017-09-1', 0, 1, 2, 1, 17, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-09-2', 0, 'C1-017-09-2', 0, 1, 2, 1, 17, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-10-1', 0, 'C1-017-10-1', 0, 1, 2, 1, 17, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-10-2', 0, 'C1-017-10-2', 0, 1, 2, 1, 17, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-11-1', 0, 'C1-017-11-1', 0, 1, 2, 1, 17, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-11-2', 0, 'C1-017-11-2', 0, 1, 2, 1, 17, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-12-1', 0, 'C1-017-12-1', 0, 1, 2, 1, 17, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-12-2', 0, 'C1-017-12-2', 0, 1, 2, 1, 17, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-13-1', 0, 'C1-017-13-1', 0, 1, 2, 1, 17, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-13-2', 0, 'C1-017-13-2', 0, 1, 2, 1, 17, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-14-1', 0, 'C1-017-14-1', 0, 1, 2, 1, 17, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-14-2', 0, 'C1-017-14-2', 0, 1, 2, 1, 17, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-15-1', 0, 'C1-017-15-1', 0, 1, 2, 1, 17, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-017-15-2', 0, 'C1-017-15-2', 0, 1, 2, 1, 17, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-01-1', 0, 'C1-018-01-1', 0, 1, 2, 1, 18, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-01-2', 0, 'C1-018-01-2', 0, 1, 2, 1, 18, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-02-1', 0, 'C1-018-02-1', 0, 1, 2, 1, 18, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-02-2', 0, 'C1-018-02-2', 0, 1, 2, 1, 18, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-03-1', 0, 'C1-018-03-1', 0, 1, 2, 1, 18, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-03-2', 0, 'C1-018-03-2', 0, 1, 2, 1, 18, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-04-1', 0, 'C1-018-04-1', 0, 1, 2, 1, 18, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-04-2', 0, 'C1-018-04-2', 0, 1, 2, 1, 18, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-05-1', 0, 'C1-018-05-1', 0, 1, 2, 1, 18, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-05-2', 0, 'C1-018-05-2', 0, 1, 2, 1, 18, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-06-1', 0, 'C1-018-06-1', 0, 1, 2, 1, 18, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-06-2', 0, 'C1-018-06-2', 0, 1, 2, 1, 18, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-07-1', 0, 'C1-018-07-1', 0, 1, 2, 1, 18, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-07-2', 0, 'C1-018-07-2', 0, 1, 2, 1, 18, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-08-1', 0, 'C1-018-08-1', 0, 1, 2, 1, 18, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-08-2', 0, 'C1-018-08-2', 0, 1, 2, 1, 18, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-09-1', 0, 'C1-018-09-1', 0, 1, 2, 1, 18, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-09-2', 0, 'C1-018-09-2', 0, 1, 2, 1, 18, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-10-1', 0, 'C1-018-10-1', 0, 1, 2, 1, 18, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-10-2', 0, 'C1-018-10-2', 0, 1, 2, 1, 18, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-11-1', 0, 'C1-018-11-1', 0, 1, 2, 1, 18, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-11-2', 0, 'C1-018-11-2', 0, 1, 2, 1, 18, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-12-1', 0, 'C1-018-12-1', 0, 1, 2, 1, 18, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-12-2', 0, 'C1-018-12-2', 0, 1, 2, 1, 18, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-13-1', 0, 'C1-018-13-1', 0, 1, 2, 1, 18, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-13-2', 0, 'C1-018-13-2', 0, 1, 2, 1, 18, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-14-1', 0, 'C1-018-14-1', 0, 1, 2, 1, 18, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-14-2', 0, 'C1-018-14-2', 0, 1, 2, 1, 18, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-15-1', 2, 'C1-018-15-1', 0, 1, 2, 1, 18, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-018-15-2', 0, 'C1-018-15-2', 0, 1, 2, 1, 18, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-01-1', 0, 'C1-019-01-1', 0, 1, 2, 1, 19, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-01-2', 0, 'C1-019-01-2', 0, 1, 2, 1, 19, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-02-1', 0, 'C1-019-02-1', 0, 1, 2, 1, 19, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-02-2', 0, 'C1-019-02-2', 0, 1, 2, 1, 19, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-03-1', 0, 'C1-019-03-1', 0, 1, 2, 1, 19, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-03-2', 0, 'C1-019-03-2', 0, 1, 2, 1, 19, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-04-1', 0, 'C1-019-04-1', 0, 1, 2, 1, 19, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-04-2', 0, 'C1-019-04-2', 0, 1, 2, 1, 19, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-05-1', 0, 'C1-019-05-1', 0, 1, 2, 1, 19, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-05-2', 0, 'C1-019-05-2', 0, 1, 2, 1, 19, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-06-1', 0, 'C1-019-06-1', 0, 1, 2, 1, 19, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-06-2', 0, 'C1-019-06-2', 0, 1, 2, 1, 19, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-07-1', 0, 'C1-019-07-1', 0, 1, 2, 1, 19, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-07-2', 0, 'C1-019-07-2', 0, 1, 2, 1, 19, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-08-1', 0, 'C1-019-08-1', 0, 1, 2, 1, 19, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-08-2', 0, 'C1-019-08-2', 0, 1, 2, 1, 19, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-09-1', 0, 'C1-019-09-1', 0, 1, 2, 1, 19, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-09-2', 0, 'C1-019-09-2', 0, 1, 2, 1, 19, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-10-1', 0, 'C1-019-10-1', 0, 1, 2, 1, 19, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-10-2', 0, 'C1-019-10-2', 0, 1, 2, 1, 19, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-11-1', 0, 'C1-019-11-1', 0, 1, 2, 1, 19, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-11-2', 0, 'C1-019-11-2', 0, 1, 2, 1, 19, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-12-1', 0, 'C1-019-12-1', 0, 1, 2, 1, 19, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-12-2', 0, 'C1-019-12-2', 0, 1, 2, 1, 19, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-13-1', 0, 'C1-019-13-1', 0, 1, 2, 1, 19, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-13-2', 0, 'C1-019-13-2', 0, 1, 2, 1, 19, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-14-1', 0, 'C1-019-14-1', 0, 1, 2, 1, 19, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-14-2', 0, 'C1-019-14-2', 0, 1, 2, 1, 19, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-15-1', 0, 'C1-019-15-1', 0, 1, 2, 1, 19, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-019-15-2', 0, 'C1-019-15-2', 0, 1, 2, 1, 19, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-01-1', 0, 'C1-020-01-1', 0, 1, 2, 1, 20, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-01-2', 0, 'C1-020-01-2', 0, 1, 2, 1, 20, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-02-1', 0, 'C1-020-02-1', 0, 1, 2, 1, 20, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-02-2', 0, 'C1-020-02-2', 0, 1, 2, 1, 20, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-03-1', 0, 'C1-020-03-1', 0, 1, 2, 1, 20, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-03-2', 0, 'C1-020-03-2', 0, 1, 2, 1, 20, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-04-1', 0, 'C1-020-04-1', 0, 1, 2, 1, 20, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-04-2', 0, 'C1-020-04-2', 0, 1, 2, 1, 20, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-05-1', 0, 'C1-020-05-1', 0, 1, 2, 1, 20, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-05-2', 0, 'C1-020-05-2', 0, 1, 2, 1, 20, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-06-1', 0, 'C1-020-06-1', 0, 1, 2, 1, 20, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-06-2', 0, 'C1-020-06-2', 0, 1, 2, 1, 20, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-07-1', 0, 'C1-020-07-1', 0, 1, 2, 1, 20, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-07-2', 0, 'C1-020-07-2', 0, 1, 2, 1, 20, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-08-1', 0, 'C1-020-08-1', 0, 1, 2, 1, 20, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-08-2', 0, 'C1-020-08-2', 0, 1, 2, 1, 20, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-09-1', 0, 'C1-020-09-1', 0, 1, 2, 1, 20, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-09-2', 0, 'C1-020-09-2', 0, 1, 2, 1, 20, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-10-1', 0, 'C1-020-10-1', 0, 1, 2, 1, 20, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-10-2', 0, 'C1-020-10-2', 0, 1, 2, 1, 20, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-11-1', 0, 'C1-020-11-1', 0, 1, 2, 1, 20, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-11-2', 0, 'C1-020-11-2', 0, 1, 2, 1, 20, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-12-1', 0, 'C1-020-12-1', 0, 1, 2, 1, 20, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-12-2', 0, 'C1-020-12-2', 0, 1, 2, 1, 20, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-13-1', 0, 'C1-020-13-1', 0, 1, 2, 1, 20, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-13-2', 0, 'C1-020-13-2', 0, 1, 2, 1, 20, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-14-1', 0, 'C1-020-14-1', 0, 1, 2, 1, 20, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-14-2', 0, 'C1-020-14-2', 0, 1, 2, 1, 20, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-15-1', 0, 'C1-020-15-1', 0, 1, 2, 1, 20, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-020-15-2', 0, 'C1-020-15-2', 0, 1, 2, 1, 20, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-01-1', 0, 'C1-021-01-1', 0, 1, 2, 1, 21, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-01-2', 0, 'C1-021-01-2', 0, 1, 2, 1, 21, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-02-1', 0, 'C1-021-02-1', 0, 1, 2, 1, 21, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-02-2', 0, 'C1-021-02-2', 0, 1, 2, 1, 21, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-03-1', 0, 'C1-021-03-1', 0, 1, 2, 1, 21, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-03-2', 0, 'C1-021-03-2', 0, 1, 2, 1, 21, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-04-1', 0, 'C1-021-04-1', 0, 1, 2, 1, 21, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-04-2', 0, 'C1-021-04-2', 0, 1, 2, 1, 21, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-05-1', 0, 'C1-021-05-1', 0, 1, 2, 1, 21, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-05-2', 0, 'C1-021-05-2', 0, 1, 2, 1, 21, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-06-1', 0, 'C1-021-06-1', 0, 1, 2, 1, 21, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-06-2', 0, 'C1-021-06-2', 0, 1, 2, 1, 21, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-07-1', 0, 'C1-021-07-1', 0, 1, 2, 1, 21, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-07-2', 0, 'C1-021-07-2', 0, 1, 2, 1, 21, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-08-1', 0, 'C1-021-08-1', 0, 1, 2, 1, 21, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-08-2', 0, 'C1-021-08-2', 0, 1, 2, 1, 21, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-09-1', 0, 'C1-021-09-1', 0, 1, 2, 1, 21, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-09-2', 0, 'C1-021-09-2', 0, 1, 2, 1, 21, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-10-1', 0, 'C1-021-10-1', 0, 1, 2, 1, 21, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-10-2', 0, 'C1-021-10-2', 0, 1, 2, 1, 21, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-11-1', 0, 'C1-021-11-1', 0, 1, 2, 1, 21, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-11-2', 0, 'C1-021-11-2', 0, 1, 2, 1, 21, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-12-1', 0, 'C1-021-12-1', 0, 1, 2, 1, 21, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-12-2', 0, 'C1-021-12-2', 0, 1, 2, 1, 21, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-13-1', 0, 'C1-021-13-1', 0, 1, 2, 1, 21, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-13-2', 0, 'C1-021-13-2', 0, 1, 2, 1, 21, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-14-1', 0, 'C1-021-14-1', 0, 1, 2, 1, 21, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-14-2', 0, 'C1-021-14-2', 0, 1, 2, 1, 21, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-15-1', 0, 'C1-021-15-1', 0, 1, 2, 1, 21, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-021-15-2', 0, 'C1-021-15-2', 0, 1, 2, 1, 21, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-01-1', 0, 'C1-022-01-1', 0, 1, 2, 1, 22, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-01-2', 0, 'C1-022-01-2', 0, 1, 2, 1, 22, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-02-1', 0, 'C1-022-02-1', 0, 1, 2, 1, 22, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-02-2', 0, 'C1-022-02-2', 0, 1, 2, 1, 22, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-03-1', 0, 'C1-022-03-1', 0, 1, 2, 1, 22, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-03-2', 0, 'C1-022-03-2', 0, 1, 2, 1, 22, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-04-1', 0, 'C1-022-04-1', 0, 1, 2, 1, 22, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-04-2', 0, 'C1-022-04-2', 0, 1, 2, 1, 22, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-05-1', 0, 'C1-022-05-1', 0, 1, 2, 1, 22, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-05-2', 0, 'C1-022-05-2', 0, 1, 2, 1, 22, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-06-1', 0, 'C1-022-06-1', 0, 1, 2, 1, 22, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-06-2', 0, 'C1-022-06-2', 0, 1, 2, 1, 22, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-07-1', 0, 'C1-022-07-1', 0, 1, 2, 1, 22, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-07-2', 0, 'C1-022-07-2', 0, 1, 2, 1, 22, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-08-1', 0, 'C1-022-08-1', 0, 1, 2, 1, 22, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-08-2', 0, 'C1-022-08-2', 0, 1, 2, 1, 22, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-09-1', 0, 'C1-022-09-1', 0, 1, 2, 1, 22, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-09-2', 0, 'C1-022-09-2', 0, 1, 2, 1, 22, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-10-1', 0, 'C1-022-10-1', 0, 1, 2, 1, 22, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-10-2', 0, 'C1-022-10-2', 0, 1, 2, 1, 22, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-11-1', 0, 'C1-022-11-1', 0, 1, 2, 1, 22, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-11-2', 0, 'C1-022-11-2', 0, 1, 2, 1, 22, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-12-1', 0, 'C1-022-12-1', 0, 1, 2, 1, 22, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-12-2', 0, 'C1-022-12-2', 0, 1, 2, 1, 22, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-13-1', 0, 'C1-022-13-1', 0, 1, 2, 1, 22, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-13-2', 0, 'C1-022-13-2', 0, 1, 2, 1, 22, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-14-1', 0, 'C1-022-14-1', 0, 1, 2, 1, 22, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-14-2', 0, 'C1-022-14-2', 0, 1, 2, 1, 22, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-15-1', 0, 'C1-022-15-1', 0, 1, 2, 1, 22, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-022-15-2', 0, 'C1-022-15-2', 0, 1, 2, 1, 22, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-01-1', 0, 'C1-023-01-1', 0, 1, 2, 1, 23, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-01-2', 0, 'C1-023-01-2', 0, 1, 2, 1, 23, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-02-1', 0, 'C1-023-02-1', 0, 1, 2, 1, 23, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-02-2', 0, 'C1-023-02-2', 0, 1, 2, 1, 23, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-03-1', 0, 'C1-023-03-1', 0, 1, 2, 1, 23, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-03-2', 0, 'C1-023-03-2', 0, 1, 2, 1, 23, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-04-1', 0, 'C1-023-04-1', 0, 1, 2, 1, 23, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-04-2', 0, 'C1-023-04-2', 0, 1, 2, 1, 23, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-05-1', 0, 'C1-023-05-1', 0, 1, 2, 1, 23, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-05-2', 0, 'C1-023-05-2', 0, 1, 2, 1, 23, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-06-1', 0, 'C1-023-06-1', 0, 1, 2, 1, 23, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-06-2', 0, 'C1-023-06-2', 0, 1, 2, 1, 23, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-07-1', 0, 'C1-023-07-1', 0, 1, 2, 1, 23, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-07-2', 0, 'C1-023-07-2', 0, 1, 2, 1, 23, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-08-1', 0, 'C1-023-08-1', 0, 1, 2, 1, 23, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-08-2', 0, 'C1-023-08-2', 0, 1, 2, 1, 23, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-09-1', 0, 'C1-023-09-1', 0, 1, 2, 1, 23, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-09-2', 0, 'C1-023-09-2', 0, 1, 2, 1, 23, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-10-1', 0, 'C1-023-10-1', 0, 1, 2, 1, 23, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-10-2', 0, 'C1-023-10-2', 0, 1, 2, 1, 23, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-11-1', 0, 'C1-023-11-1', 0, 1, 2, 1, 23, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-11-2', 0, 'C1-023-11-2', 0, 1, 2, 1, 23, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-12-1', 0, 'C1-023-12-1', 0, 1, 2, 1, 23, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-12-2', 0, 'C1-023-12-2', 0, 1, 2, 1, 23, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-13-1', 0, 'C1-023-13-1', 0, 1, 2, 1, 23, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-13-2', 0, 'C1-023-13-2', 0, 1, 2, 1, 23, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-14-1', 0, 'C1-023-14-1', 0, 1, 2, 1, 23, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-14-2', 0, 'C1-023-14-2', 0, 1, 2, 1, 23, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-15-1', 0, 'C1-023-15-1', 0, 1, 2, 1, 23, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-023-15-2', 0, 'C1-023-15-2', 0, 1, 2, 1, 23, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-01-1', 0, 'C1-024-01-1', 0, 1, 2, 1, 24, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-01-2', 0, 'C1-024-01-2', 0, 1, 2, 1, 24, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-02-1', 0, 'C1-024-02-1', 0, 1, 2, 1, 24, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-02-2', 0, 'C1-024-02-2', 0, 1, 2, 1, 24, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-03-1', 0, 'C1-024-03-1', 0, 1, 2, 1, 24, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-03-2', 0, 'C1-024-03-2', 0, 1, 2, 1, 24, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-04-1', 0, 'C1-024-04-1', 0, 1, 2, 1, 24, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-04-2', 0, 'C1-024-04-2', 0, 1, 2, 1, 24, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-05-1', 0, 'C1-024-05-1', 0, 1, 2, 1, 24, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-05-2', 0, 'C1-024-05-2', 0, 1, 2, 1, 24, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-06-1', 0, 'C1-024-06-1', 0, 1, 2, 1, 24, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-06-2', 0, 'C1-024-06-2', 0, 1, 2, 1, 24, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-07-1', 0, 'C1-024-07-1', 0, 1, 2, 1, 24, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-07-2', 0, 'C1-024-07-2', 0, 1, 2, 1, 24, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-08-1', 0, 'C1-024-08-1', 0, 1, 2, 1, 24, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-08-2', 0, 'C1-024-08-2', 0, 1, 2, 1, 24, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-09-1', 0, 'C1-024-09-1', 0, 1, 2, 1, 24, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-09-2', 0, 'C1-024-09-2', 0, 1, 2, 1, 24, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-10-1', 0, 'C1-024-10-1', 0, 1, 2, 1, 24, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-10-2', 0, 'C1-024-10-2', 0, 1, 2, 1, 24, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-11-1', 0, 'C1-024-11-1', 0, 1, 2, 1, 24, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-11-2', 0, 'C1-024-11-2', 0, 1, 2, 1, 24, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-12-1', 0, 'C1-024-12-1', 0, 1, 2, 1, 24, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-12-2', 0, 'C1-024-12-2', 0, 1, 2, 1, 24, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-13-1', 0, 'C1-024-13-1', 0, 1, 2, 1, 24, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-13-2', 0, 'C1-024-13-2', 0, 1, 2, 1, 24, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-14-1', 0, 'C1-024-14-1', 0, 1, 2, 1, 24, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-14-2', 0, 'C1-024-14-2', 0, 1, 2, 1, 24, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-15-1', 0, 'C1-024-15-1', 0, 1, 2, 1, 24, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-024-15-2', 3, 'C1-024-15-2', 0, 1, 2, 1, 24, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-01-1', 0, 'C1-025-01-1', 0, 1, 2, 1, 25, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-01-2', 0, 'C1-025-01-2', 0, 1, 2, 1, 25, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-02-1', 0, 'C1-025-02-1', 0, 1, 2, 1, 25, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-02-2', 0, 'C1-025-02-2', 0, 1, 2, 1, 25, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-03-1', 0, 'C1-025-03-1', 0, 1, 2, 1, 25, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-03-2', 0, 'C1-025-03-2', 0, 1, 2, 1, 25, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-04-1', 0, 'C1-025-04-1', 0, 1, 2, 1, 25, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-04-2', 0, 'C1-025-04-2', 0, 1, 2, 1, 25, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-05-1', 0, 'C1-025-05-1', 0, 1, 2, 1, 25, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-05-2', 0, 'C1-025-05-2', 0, 1, 2, 1, 25, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-06-1', 0, 'C1-025-06-1', 0, 1, 2, 1, 25, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-06-2', 0, 'C1-025-06-2', 0, 1, 2, 1, 25, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-07-1', 0, 'C1-025-07-1', 0, 1, 2, 1, 25, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-07-2', 0, 'C1-025-07-2', 0, 1, 2, 1, 25, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-08-1', 0, 'C1-025-08-1', 0, 1, 2, 1, 25, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-08-2', 0, 'C1-025-08-2', 0, 1, 2, 1, 25, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-09-1', 0, 'C1-025-09-1', 0, 1, 2, 1, 25, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-09-2', 0, 'C1-025-09-2', 0, 1, 2, 1, 25, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-10-1', 0, 'C1-025-10-1', 0, 1, 2, 1, 25, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-10-2', 0, 'C1-025-10-2', 0, 1, 2, 1, 25, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-11-1', 0, 'C1-025-11-1', 0, 1, 2, 1, 25, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-11-2', 0, 'C1-025-11-2', 0, 1, 2, 1, 25, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-12-1', 0, 'C1-025-12-1', 0, 1, 2, 1, 25, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-12-2', 0, 'C1-025-12-2', 0, 1, 2, 1, 25, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-13-1', 0, 'C1-025-13-1', 0, 1, 2, 1, 25, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-13-2', 0, 'C1-025-13-2', 0, 1, 2, 1, 25, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-14-1', 0, 'C1-025-14-1', 0, 1, 2, 1, 25, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-14-2', 0, 'C1-025-14-2', 0, 1, 2, 1, 25, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-15-1', 0, 'C1-025-15-1', 0, 1, 2, 1, 25, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-025-15-2', 0, 'C1-025-15-2', 0, 1, 2, 1, 25, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-01-1', 0, 'C1-026-01-1', 0, 1, 2, 1, 26, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-01-2', 0, 'C1-026-01-2', 0, 1, 2, 1, 26, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-02-1', 0, 'C1-026-02-1', 0, 1, 2, 1, 26, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-02-2', 0, 'C1-026-02-2', 0, 1, 2, 1, 26, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-03-1', 0, 'C1-026-03-1', 0, 1, 2, 1, 26, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-03-2', 0, 'C1-026-03-2', 0, 1, 2, 1, 26, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-04-1', 0, 'C1-026-04-1', 0, 1, 2, 1, 26, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-04-2', 0, 'C1-026-04-2', 0, 1, 2, 1, 26, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-05-1', 0, 'C1-026-05-1', 0, 1, 2, 1, 26, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-05-2', 0, 'C1-026-05-2', 0, 1, 2, 1, 26, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-06-1', 0, 'C1-026-06-1', 0, 1, 2, 1, 26, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-06-2', 0, 'C1-026-06-2', 0, 1, 2, 1, 26, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-07-1', 0, 'C1-026-07-1', 0, 1, 2, 1, 26, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-07-2', 0, 'C1-026-07-2', 0, 1, 2, 1, 26, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-08-1', 0, 'C1-026-08-1', 0, 1, 2, 1, 26, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-08-2', 0, 'C1-026-08-2', 0, 1, 2, 1, 26, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-09-1', 0, 'C1-026-09-1', 0, 1, 2, 1, 26, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-09-2', 0, 'C1-026-09-2', 0, 1, 2, 1, 26, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-10-1', 0, 'C1-026-10-1', 0, 1, 2, 1, 26, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-10-2', 0, 'C1-026-10-2', 0, 1, 2, 1, 26, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-11-1', 0, 'C1-026-11-1', 0, 1, 2, 1, 26, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-11-2', 0, 'C1-026-11-2', 0, 1, 2, 1, 26, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-12-1', 0, 'C1-026-12-1', 0, 1, 2, 1, 26, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-12-2', 0, 'C1-026-12-2', 0, 1, 2, 1, 26, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-13-1', 0, 'C1-026-13-1', 0, 1, 2, 1, 26, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-13-2', 0, 'C1-026-13-2', 0, 1, 2, 1, 26, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-14-1', 0, 'C1-026-14-1', 0, 1, 2, 1, 26, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-14-2', 0, 'C1-026-14-2', 0, 1, 2, 1, 26, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-15-1', 0, 'C1-026-15-1', 0, 1, 2, 1, 26, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-026-15-2', 0, 'C1-026-15-2', 0, 1, 2, 1, 26, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-01-1', 0, 'C1-027-01-1', 0, 1, 2, 1, 27, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-01-2', 0, 'C1-027-01-2', 0, 1, 2, 1, 27, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-02-1', 0, 'C1-027-02-1', 0, 1, 2, 1, 27, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-02-2', 0, 'C1-027-02-2', 0, 1, 2, 1, 27, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-03-1', 0, 'C1-027-03-1', 0, 1, 2, 1, 27, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-03-2', 0, 'C1-027-03-2', 0, 1, 2, 1, 27, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-04-1', 0, 'C1-027-04-1', 0, 1, 2, 1, 27, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-04-2', 0, 'C1-027-04-2', 0, 1, 2, 1, 27, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-05-1', 0, 'C1-027-05-1', 0, 1, 2, 1, 27, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-05-2', 0, 'C1-027-05-2', 0, 1, 2, 1, 27, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-06-1', 0, 'C1-027-06-1', 0, 1, 2, 1, 27, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-06-2', 0, 'C1-027-06-2', 0, 1, 2, 1, 27, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-07-1', 0, 'C1-027-07-1', 0, 1, 2, 1, 27, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-07-2', 0, 'C1-027-07-2', 0, 1, 2, 1, 27, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-08-1', 0, 'C1-027-08-1', 0, 1, 2, 1, 27, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-08-2', 0, 'C1-027-08-2', 0, 1, 2, 1, 27, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-09-1', 0, 'C1-027-09-1', 0, 1, 2, 1, 27, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-09-2', 0, 'C1-027-09-2', 0, 1, 2, 1, 27, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-10-1', 0, 'C1-027-10-1', 0, 1, 2, 1, 27, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-10-2', 0, 'C1-027-10-2', 0, 1, 2, 1, 27, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-11-1', 0, 'C1-027-11-1', 0, 1, 2, 1, 27, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-11-2', 0, 'C1-027-11-2', 0, 1, 2, 1, 27, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-12-1', 0, 'C1-027-12-1', 0, 1, 2, 1, 27, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-12-2', 0, 'C1-027-12-2', 0, 1, 2, 1, 27, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-13-1', 0, 'C1-027-13-1', 0, 1, 2, 1, 27, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-13-2', 0, 'C1-027-13-2', 0, 1, 2, 1, 27, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-14-1', 0, 'C1-027-14-1', 0, 1, 2, 1, 27, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-14-2', 0, 'C1-027-14-2', 0, 1, 2, 1, 27, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-15-1', 0, 'C1-027-15-1', 0, 1, 2, 1, 27, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-027-15-2', 0, 'C1-027-15-2', 0, 1, 2, 1, 27, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-01-1', 0, 'C1-028-01-1', 0, 1, 2, 1, 28, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-01-2', 0, 'C1-028-01-2', 0, 1, 2, 1, 28, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-02-1', 0, 'C1-028-02-1', 0, 1, 2, 1, 28, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-02-2', 0, 'C1-028-02-2', 0, 1, 2, 1, 28, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-03-1', 0, 'C1-028-03-1', 0, 1, 2, 1, 28, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-03-2', 0, 'C1-028-03-2', 0, 1, 2, 1, 28, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-04-1', 0, 'C1-028-04-1', 0, 1, 2, 1, 28, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-04-2', 0, 'C1-028-04-2', 0, 1, 2, 1, 28, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-05-1', 0, 'C1-028-05-1', 0, 1, 2, 1, 28, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-05-2', 0, 'C1-028-05-2', 0, 1, 2, 1, 28, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-06-1', 0, 'C1-028-06-1', 0, 1, 2, 1, 28, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-06-2', 0, 'C1-028-06-2', 0, 1, 2, 1, 28, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-07-1', 0, 'C1-028-07-1', 0, 1, 2, 1, 28, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-07-2', 0, 'C1-028-07-2', 0, 1, 2, 1, 28, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-08-1', 0, 'C1-028-08-1', 0, 1, 2, 1, 28, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-08-2', 0, 'C1-028-08-2', 0, 1, 2, 1, 28, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-09-1', 0, 'C1-028-09-1', 0, 1, 2, 1, 28, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-09-2', 0, 'C1-028-09-2', 0, 1, 2, 1, 28, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-10-1', 0, 'C1-028-10-1', 0, 1, 2, 1, 28, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-10-2', 0, 'C1-028-10-2', 0, 1, 2, 1, 28, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-11-1', 0, 'C1-028-11-1', 0, 1, 2, 1, 28, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-11-2', 0, 'C1-028-11-2', 0, 1, 2, 1, 28, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-12-1', 0, 'C1-028-12-1', 0, 1, 2, 1, 28, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-12-2', 0, 'C1-028-12-2', 0, 1, 2, 1, 28, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-13-1', 0, 'C1-028-13-1', 0, 1, 2, 1, 28, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-13-2', 0, 'C1-028-13-2', 0, 1, 2, 1, 28, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-14-1', 0, 'C1-028-14-1', 0, 1, 2, 1, 28, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-14-2', 0, 'C1-028-14-2', 0, 1, 2, 1, 28, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-15-1', 0, 'C1-028-15-1', 0, 1, 2, 1, 28, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-028-15-2', 0, 'C1-028-15-2', 0, 1, 2, 1, 28, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-01-1', 0, 'C1-029-01-1', 0, 1, 2, 1, 29, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-01-2', 0, 'C1-029-01-2', 0, 1, 2, 1, 29, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-02-1', 0, 'C1-029-02-1', 0, 1, 2, 1, 29, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-02-2', 0, 'C1-029-02-2', 0, 1, 2, 1, 29, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-03-1', 0, 'C1-029-03-1', 0, 1, 2, 1, 29, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-03-2', 0, 'C1-029-03-2', 0, 1, 2, 1, 29, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-04-1', 0, 'C1-029-04-1', 0, 1, 2, 1, 29, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-04-2', 0, 'C1-029-04-2', 0, 1, 2, 1, 29, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-05-1', 0, 'C1-029-05-1', 0, 1, 2, 1, 29, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-05-2', 0, 'C1-029-05-2', 0, 1, 2, 1, 29, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-06-1', 0, 'C1-029-06-1', 0, 1, 2, 1, 29, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-06-2', 0, 'C1-029-06-2', 0, 1, 2, 1, 29, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-07-1', 0, 'C1-029-07-1', 0, 1, 2, 1, 29, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-07-2', 0, 'C1-029-07-2', 0, 1, 2, 1, 29, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-08-1', 0, 'C1-029-08-1', 0, 1, 2, 1, 29, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-08-2', 0, 'C1-029-08-2', 0, 1, 2, 1, 29, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-09-1', 0, 'C1-029-09-1', 0, 1, 2, 1, 29, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-09-2', 0, 'C1-029-09-2', 0, 1, 2, 1, 29, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-10-1', 0, 'C1-029-10-1', 0, 1, 2, 1, 29, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-10-2', 0, 'C1-029-10-2', 0, 1, 2, 1, 29, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-11-1', 0, 'C1-029-11-1', 0, 1, 2, 1, 29, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-11-2', 0, 'C1-029-11-2', 0, 1, 2, 1, 29, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-12-1', 0, 'C1-029-12-1', 0, 1, 2, 1, 29, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-12-2', 0, 'C1-029-12-2', 0, 1, 2, 1, 29, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-13-1', 0, 'C1-029-13-1', 0, 1, 2, 1, 29, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-13-2', 0, 'C1-029-13-2', 0, 1, 2, 1, 29, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-14-1', 0, 'C1-029-14-1', 0, 1, 2, 1, 29, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-14-2', 0, 'C1-029-14-2', 0, 1, 2, 1, 29, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-15-1', 0, 'C1-029-15-1', 0, 1, 2, 1, 29, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-029-15-2', 0, 'C1-029-15-2', 0, 1, 2, 1, 29, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-01-1', 0, 'C1-030-01-1', 0, 1, 2, 1, 30, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-01-2', 0, 'C1-030-01-2', 0, 1, 2, 1, 30, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-02-1', 0, 'C1-030-02-1', 0, 1, 2, 1, 30, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-02-2', 0, 'C1-030-02-2', 0, 1, 2, 1, 30, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-03-1', 0, 'C1-030-03-1', 0, 1, 2, 1, 30, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-03-2', 0, 'C1-030-03-2', 0, 1, 2, 1, 30, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-04-1', 0, 'C1-030-04-1', 0, 1, 2, 1, 30, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-04-2', 0, 'C1-030-04-2', 0, 1, 2, 1, 30, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-05-1', 0, 'C1-030-05-1', 0, 1, 2, 1, 30, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-05-2', 0, 'C1-030-05-2', 0, 1, 2, 1, 30, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-06-1', 0, 'C1-030-06-1', 0, 1, 2, 1, 30, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-06-2', 0, 'C1-030-06-2', 0, 1, 2, 1, 30, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-07-1', 0, 'C1-030-07-1', 0, 1, 2, 1, 30, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-07-2', 0, 'C1-030-07-2', 0, 1, 2, 1, 30, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-08-1', 0, 'C1-030-08-1', 0, 1, 2, 1, 30, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-08-2', 0, 'C1-030-08-2', 0, 1, 2, 1, 30, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-09-1', 0, 'C1-030-09-1', 0, 1, 2, 1, 30, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-09-2', 0, 'C1-030-09-2', 0, 1, 2, 1, 30, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-10-1', 0, 'C1-030-10-1', 0, 1, 2, 1, 30, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-10-2', 0, 'C1-030-10-2', 0, 1, 2, 1, 30, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-11-1', 0, 'C1-030-11-1', 0, 1, 2, 1, 30, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-11-2', 0, 'C1-030-11-2', 0, 1, 2, 1, 30, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-12-1', 0, 'C1-030-12-1', 0, 1, 2, 1, 30, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-12-2', 0, 'C1-030-12-2', 0, 1, 2, 1, 30, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-13-1', 0, 'C1-030-13-1', 0, 1, 2, 1, 30, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-13-2', 0, 'C1-030-13-2', 0, 1, 2, 1, 30, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-14-1', 0, 'C1-030-14-1', 0, 1, 2, 1, 30, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-14-2', 0, 'C1-030-14-2', 0, 1, 2, 1, 30, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-15-1', 0, 'C1-030-15-1', 0, 1, 2, 1, 30, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-030-15-2', 0, 'C1-030-15-2', 0, 1, 2, 1, 30, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-01-1', 0, 'C1-031-01-1', 0, 1, 2, 1, 31, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-01-2', 0, 'C1-031-01-2', 0, 1, 2, 1, 31, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-02-1', 0, 'C1-031-02-1', 0, 1, 2, 1, 31, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-02-2', 0, 'C1-031-02-2', 0, 1, 2, 1, 31, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-03-1', 0, 'C1-031-03-1', 0, 1, 2, 1, 31, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-03-2', 0, 'C1-031-03-2', 0, 1, 2, 1, 31, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-04-1', 0, 'C1-031-04-1', 0, 1, 2, 1, 31, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-04-2', 0, 'C1-031-04-2', 0, 1, 2, 1, 31, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-05-1', 0, 'C1-031-05-1', 0, 1, 2, 1, 31, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-05-2', 0, 'C1-031-05-2', 0, 1, 2, 1, 31, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-06-1', 0, 'C1-031-06-1', 0, 1, 2, 1, 31, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-06-2', 0, 'C1-031-06-2', 0, 1, 2, 1, 31, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-07-1', 0, 'C1-031-07-1', 0, 1, 2, 1, 31, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-07-2', 0, 'C1-031-07-2', 0, 1, 2, 1, 31, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-08-1', 0, 'C1-031-08-1', 0, 1, 2, 1, 31, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-08-2', 0, 'C1-031-08-2', 0, 1, 2, 1, 31, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-09-1', 0, 'C1-031-09-1', 0, 1, 2, 1, 31, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-09-2', 0, 'C1-031-09-2', 0, 1, 2, 1, 31, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-10-1', 0, 'C1-031-10-1', 0, 1, 2, 1, 31, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-10-2', 0, 'C1-031-10-2', 0, 1, 2, 1, 31, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-11-1', 0, 'C1-031-11-1', 0, 1, 2, 1, 31, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-11-2', 0, 'C1-031-11-2', 0, 1, 2, 1, 31, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-12-1', 0, 'C1-031-12-1', 0, 1, 2, 1, 31, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-12-2', 0, 'C1-031-12-2', 0, 1, 2, 1, 31, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-13-1', 0, 'C1-031-13-1', 0, 1, 2, 1, 31, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-13-2', 0, 'C1-031-13-2', 0, 1, 2, 1, 31, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-14-1', 0, 'C1-031-14-1', 0, 1, 2, 1, 31, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-14-2', 0, 'C1-031-14-2', 0, 1, 2, 1, 31, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-15-1', 0, 'C1-031-15-1', 0, 1, 2, 1, 31, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-031-15-2', 0, 'C1-031-15-2', 0, 1, 2, 1, 31, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-01-1', 0, 'C1-032-01-1', 0, 1, 2, 1, 32, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-01-2', 0, 'C1-032-01-2', 0, 1, 2, 1, 32, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-02-1', 0, 'C1-032-02-1', 0, 1, 2, 1, 32, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-02-2', 0, 'C1-032-02-2', 0, 1, 2, 1, 32, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-03-1', 0, 'C1-032-03-1', 0, 1, 2, 1, 32, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-03-2', 0, 'C1-032-03-2', 0, 1, 2, 1, 32, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-04-1', 0, 'C1-032-04-1', 0, 1, 2, 1, 32, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-04-2', 0, 'C1-032-04-2', 0, 1, 2, 1, 32, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-05-1', 0, 'C1-032-05-1', 0, 1, 2, 1, 32, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-05-2', 0, 'C1-032-05-2', 0, 1, 2, 1, 32, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-06-1', 0, 'C1-032-06-1', 0, 1, 2, 1, 32, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-06-2', 0, 'C1-032-06-2', 0, 1, 2, 1, 32, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-07-1', 0, 'C1-032-07-1', 0, 1, 2, 1, 32, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-07-2', 0, 'C1-032-07-2', 0, 1, 2, 1, 32, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-08-1', 0, 'C1-032-08-1', 0, 1, 2, 1, 32, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-08-2', 0, 'C1-032-08-2', 0, 1, 2, 1, 32, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-09-1', 0, 'C1-032-09-1', 0, 1, 2, 1, 32, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-09-2', 0, 'C1-032-09-2', 0, 1, 2, 1, 32, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-10-1', 0, 'C1-032-10-1', 0, 1, 2, 1, 32, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-10-2', 0, 'C1-032-10-2', 0, 1, 2, 1, 32, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-11-1', 0, 'C1-032-11-1', 0, 1, 2, 1, 32, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-11-2', 0, 'C1-032-11-2', 0, 1, 2, 1, 32, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-12-1', 0, 'C1-032-12-1', 0, 1, 2, 1, 32, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-12-2', 0, 'C1-032-12-2', 0, 1, 2, 1, 32, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-13-1', 0, 'C1-032-13-1', 0, 1, 2, 1, 32, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-13-2', 0, 'C1-032-13-2', 0, 1, 2, 1, 32, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-14-1', 0, 'C1-032-14-1', 0, 1, 2, 1, 32, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-14-2', 2, 'C1-032-14-2', 0, 1, 2, 1, 32, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-15-1', 0, 'C1-032-15-1', 0, 1, 2, 1, 32, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-032-15-2', 9, 'C1-032-15-2', 0, 1, 2, 1, 32, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-01-1', 0, 'C1-033-01-1', 0, 1, 2, 1, 33, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-01-2', 0, 'C1-033-01-2', 0, 1, 2, 1, 33, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-02-1', 0, 'C1-033-02-1', 0, 1, 2, 1, 33, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-02-2', 0, 'C1-033-02-2', 0, 1, 2, 1, 33, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-03-1', 0, 'C1-033-03-1', 0, 1, 2, 1, 33, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-03-2', 0, 'C1-033-03-2', 0, 1, 2, 1, 33, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-04-1', 0, 'C1-033-04-1', 0, 1, 2, 1, 33, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-04-2', 0, 'C1-033-04-2', 0, 1, 2, 1, 33, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-05-1', 0, 'C1-033-05-1', 0, 1, 2, 1, 33, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-05-2', 0, 'C1-033-05-2', 0, 1, 2, 1, 33, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-06-1', 0, 'C1-033-06-1', 0, 1, 2, 1, 33, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-06-2', 0, 'C1-033-06-2', 0, 1, 2, 1, 33, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-07-1', 0, 'C1-033-07-1', 0, 1, 2, 1, 33, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-07-2', 0, 'C1-033-07-2', 0, 1, 2, 1, 33, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-08-1', 0, 'C1-033-08-1', 0, 1, 2, 1, 33, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-08-2', 0, 'C1-033-08-2', 0, 1, 2, 1, 33, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-09-1', 0, 'C1-033-09-1', 0, 1, 2, 1, 33, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-09-2', 0, 'C1-033-09-2', 0, 1, 2, 1, 33, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-10-1', 0, 'C1-033-10-1', 0, 1, 2, 1, 33, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-10-2', 0, 'C1-033-10-2', 0, 1, 2, 1, 33, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-11-1', 0, 'C1-033-11-1', 0, 1, 2, 1, 33, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-11-2', 0, 'C1-033-11-2', 0, 1, 2, 1, 33, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-12-1', 0, 'C1-033-12-1', 0, 1, 2, 1, 33, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-12-2', 0, 'C1-033-12-2', 0, 1, 2, 1, 33, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-13-1', 0, 'C1-033-13-1', 0, 1, 2, 1, 33, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-13-2', 0, 'C1-033-13-2', 0, 1, 2, 1, 33, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-14-1', 0, 'C1-033-14-1', 0, 1, 2, 1, 33, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-14-2', 0, 'C1-033-14-2', 0, 1, 2, 1, 33, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-15-1', 0, 'C1-033-15-1', 0, 1, 2, 1, 33, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-033-15-2', 0, 'C1-033-15-2', 0, 1, 2, 1, 33, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-01-1', 0, 'C1-034-01-1', 0, 1, 2, 1, 34, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-01-2', 0, 'C1-034-01-2', 0, 1, 2, 1, 34, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-02-1', 0, 'C1-034-02-1', 0, 1, 2, 1, 34, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-02-2', 0, 'C1-034-02-2', 0, 1, 2, 1, 34, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-03-1', 0, 'C1-034-03-1', 0, 1, 2, 1, 34, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-03-2', 0, 'C1-034-03-2', 0, 1, 2, 1, 34, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-04-1', 0, 'C1-034-04-1', 0, 1, 2, 1, 34, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-04-2', 0, 'C1-034-04-2', 0, 1, 2, 1, 34, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-05-1', 0, 'C1-034-05-1', 0, 1, 2, 1, 34, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-05-2', 0, 'C1-034-05-2', 0, 1, 2, 1, 34, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-06-1', 0, 'C1-034-06-1', 0, 1, 2, 1, 34, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-06-2', 0, 'C1-034-06-2', 0, 1, 2, 1, 34, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-07-1', 0, 'C1-034-07-1', 0, 1, 2, 1, 34, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-07-2', 0, 'C1-034-07-2', 0, 1, 2, 1, 34, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-08-1', 0, 'C1-034-08-1', 0, 1, 2, 1, 34, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-08-2', 0, 'C1-034-08-2', 0, 1, 2, 1, 34, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-09-1', 0, 'C1-034-09-1', 0, 1, 2, 1, 34, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-09-2', 0, 'C1-034-09-2', 0, 1, 2, 1, 34, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-10-1', 0, 'C1-034-10-1', 0, 1, 2, 1, 34, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-10-2', 0, 'C1-034-10-2', 0, 1, 2, 1, 34, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-11-1', 0, 'C1-034-11-1', 0, 1, 2, 1, 34, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-11-2', 0, 'C1-034-11-2', 0, 1, 2, 1, 34, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-12-1', 0, 'C1-034-12-1', 0, 1, 2, 1, 34, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-12-2', 0, 'C1-034-12-2', 0, 1, 2, 1, 34, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-13-1', 0, 'C1-034-13-1', 0, 1, 2, 1, 34, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-13-2', 0, 'C1-034-13-2', 0, 1, 2, 1, 34, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-14-1', 0, 'C1-034-14-1', 0, 1, 2, 1, 34, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-14-2', 0, 'C1-034-14-2', 0, 1, 2, 1, 34, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-15-1', 0, 'C1-034-15-1', 0, 1, 2, 1, 34, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-034-15-2', 0, 'C1-034-15-2', 0, 1, 2, 1, 34, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-01-1', 0, 'C1-035-01-1', 0, 1, 2, 1, 35, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-01-2', 0, 'C1-035-01-2', 0, 1, 2, 1, 35, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-02-1', 0, 'C1-035-02-1', 0, 1, 2, 1, 35, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-02-2', 0, 'C1-035-02-2', 0, 1, 2, 1, 35, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-03-1', 0, 'C1-035-03-1', 0, 1, 2, 1, 35, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-03-2', 0, 'C1-035-03-2', 0, 1, 2, 1, 35, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-04-1', 0, 'C1-035-04-1', 0, 1, 2, 1, 35, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-04-2', 0, 'C1-035-04-2', 0, 1, 2, 1, 35, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-05-1', 0, 'C1-035-05-1', 0, 1, 2, 1, 35, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-05-2', 0, 'C1-035-05-2', 0, 1, 2, 1, 35, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-06-1', 0, 'C1-035-06-1', 0, 1, 2, 1, 35, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-06-2', 0, 'C1-035-06-2', 0, 1, 2, 1, 35, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-07-1', 0, 'C1-035-07-1', 0, 1, 2, 1, 35, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-07-2', 0, 'C1-035-07-2', 0, 1, 2, 1, 35, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-08-1', 0, 'C1-035-08-1', 0, 1, 2, 1, 35, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-08-2', 0, 'C1-035-08-2', 0, 1, 2, 1, 35, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-09-1', 0, 'C1-035-09-1', 0, 1, 2, 1, 35, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-09-2', 0, 'C1-035-09-2', 0, 1, 2, 1, 35, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-10-1', 0, 'C1-035-10-1', 0, 1, 2, 1, 35, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-10-2', 0, 'C1-035-10-2', 0, 1, 2, 1, 35, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-11-1', 0, 'C1-035-11-1', 0, 1, 2, 1, 35, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-11-2', 0, 'C1-035-11-2', 0, 1, 2, 1, 35, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-12-1', 0, 'C1-035-12-1', 0, 1, 2, 1, 35, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-12-2', 0, 'C1-035-12-2', 0, 1, 2, 1, 35, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-13-1', 0, 'C1-035-13-1', 0, 1, 2, 1, 35, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-13-2', 0, 'C1-035-13-2', 0, 1, 2, 1, 35, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-14-1', 2, 'C1-035-14-1', 0, 1, 2, 1, 35, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-14-2', 0, 'C1-035-14-2', 0, 1, 2, 1, 35, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-15-1', 0, 'C1-035-15-1', 0, 1, 2, 1, 35, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-035-15-2', 0, 'C1-035-15-2', 0, 1, 2, 1, 35, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-01-1', 0, 'C1-036-01-1', 0, 1, 2, 1, 36, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-01-2', 0, 'C1-036-01-2', 0, 1, 2, 1, 36, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-02-1', 0, 'C1-036-02-1', 0, 1, 2, 1, 36, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-02-2', 0, 'C1-036-02-2', 0, 1, 2, 1, 36, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-03-1', 0, 'C1-036-03-1', 0, 1, 2, 1, 36, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-03-2', 0, 'C1-036-03-2', 0, 1, 2, 1, 36, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-04-1', 0, 'C1-036-04-1', 0, 1, 2, 1, 36, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-04-2', 0, 'C1-036-04-2', 0, 1, 2, 1, 36, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-05-1', 0, 'C1-036-05-1', 0, 1, 2, 1, 36, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-05-2', 0, 'C1-036-05-2', 0, 1, 2, 1, 36, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-06-1', 0, 'C1-036-06-1', 0, 1, 2, 1, 36, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-06-2', 0, 'C1-036-06-2', 0, 1, 2, 1, 36, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-07-1', 0, 'C1-036-07-1', 0, 1, 2, 1, 36, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-07-2', 0, 'C1-036-07-2', 0, 1, 2, 1, 36, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-08-1', 0, 'C1-036-08-1', 0, 1, 2, 1, 36, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-08-2', 0, 'C1-036-08-2', 0, 1, 2, 1, 36, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-09-1', 0, 'C1-036-09-1', 0, 1, 2, 1, 36, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-09-2', 0, 'C1-036-09-2', 0, 1, 2, 1, 36, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-10-1', 0, 'C1-036-10-1', 0, 1, 2, 1, 36, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-10-2', 0, 'C1-036-10-2', 0, 1, 2, 1, 36, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-11-1', 0, 'C1-036-11-1', 0, 1, 2, 1, 36, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-11-2', 0, 'C1-036-11-2', 0, 1, 2, 1, 36, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-12-1', 0, 'C1-036-12-1', 0, 1, 2, 1, 36, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-12-2', 0, 'C1-036-12-2', 0, 1, 2, 1, 36, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-13-1', 0, 'C1-036-13-1', 0, 1, 2, 1, 36, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-13-2', 0, 'C1-036-13-2', 0, 1, 2, 1, 36, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-14-1', 0, 'C1-036-14-1', 0, 1, 2, 1, 36, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-14-2', 0, 'C1-036-14-2', 0, 1, 2, 1, 36, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-15-1', 0, 'C1-036-15-1', 0, 1, 2, 1, 36, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-036-15-2', 0, 'C1-036-15-2', 0, 1, 2, 1, 36, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-01-1', 0, 'C1-037-01-1', 0, 1, 2, 1, 37, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-01-2', 0, 'C1-037-01-2', 0, 1, 2, 1, 37, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-02-1', 0, 'C1-037-02-1', 0, 1, 2, 1, 37, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-02-2', 0, 'C1-037-02-2', 0, 1, 2, 1, 37, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-03-1', 0, 'C1-037-03-1', 0, 1, 2, 1, 37, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-03-2', 0, 'C1-037-03-2', 0, 1, 2, 1, 37, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-04-1', 0, 'C1-037-04-1', 0, 1, 2, 1, 37, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-04-2', 0, 'C1-037-04-2', 0, 1, 2, 1, 37, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-05-1', 0, 'C1-037-05-1', 0, 1, 2, 1, 37, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-05-2', 0, 'C1-037-05-2', 0, 1, 2, 1, 37, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-06-1', 0, 'C1-037-06-1', 0, 1, 2, 1, 37, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-06-2', 0, 'C1-037-06-2', 0, 1, 2, 1, 37, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-07-1', 0, 'C1-037-07-1', 0, 1, 2, 1, 37, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-07-2', 0, 'C1-037-07-2', 0, 1, 2, 1, 37, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-08-1', 0, 'C1-037-08-1', 0, 1, 2, 1, 37, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-08-2', 0, 'C1-037-08-2', 0, 1, 2, 1, 37, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-09-1', 0, 'C1-037-09-1', 0, 1, 2, 1, 37, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-09-2', 0, 'C1-037-09-2', 0, 1, 2, 1, 37, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-10-1', 0, 'C1-037-10-1', 0, 1, 2, 1, 37, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-10-2', 0, 'C1-037-10-2', 0, 1, 2, 1, 37, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-11-1', 0, 'C1-037-11-1', 0, 1, 2, 1, 37, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-11-2', 0, 'C1-037-11-2', 0, 1, 2, 1, 37, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-12-1', 0, 'C1-037-12-1', 0, 1, 2, 1, 37, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-12-2', 0, 'C1-037-12-2', 0, 1, 2, 1, 37, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-13-1', 0, 'C1-037-13-1', 0, 1, 2, 1, 37, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-13-2', 0, 'C1-037-13-2', 0, 1, 2, 1, 37, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-14-1', 0, 'C1-037-14-1', 0, 1, 2, 1, 37, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-14-2', 0, 'C1-037-14-2', 0, 1, 2, 1, 37, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-15-1', 0, 'C1-037-15-1', 0, 1, 2, 1, 37, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-037-15-2', 0, 'C1-037-15-2', 0, 1, 2, 1, 37, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-01-1', 0, 'C1-038-01-1', 0, 1, 2, 1, 38, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-01-2', 0, 'C1-038-01-2', 0, 1, 2, 1, 38, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-02-1', 0, 'C1-038-02-1', 0, 1, 2, 1, 38, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-02-2', 0, 'C1-038-02-2', 0, 1, 2, 1, 38, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-03-1', 0, 'C1-038-03-1', 0, 1, 2, 1, 38, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-03-2', 0, 'C1-038-03-2', 0, 1, 2, 1, 38, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-04-1', 0, 'C1-038-04-1', 0, 1, 2, 1, 38, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-04-2', 0, 'C1-038-04-2', 0, 1, 2, 1, 38, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-05-1', 0, 'C1-038-05-1', 0, 1, 2, 1, 38, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-05-2', 0, 'C1-038-05-2', 0, 1, 2, 1, 38, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-06-1', 0, 'C1-038-06-1', 0, 1, 2, 1, 38, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-06-2', 0, 'C1-038-06-2', 0, 1, 2, 1, 38, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-07-1', 0, 'C1-038-07-1', 0, 1, 2, 1, 38, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-07-2', 0, 'C1-038-07-2', 0, 1, 2, 1, 38, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-08-1', 0, 'C1-038-08-1', 0, 1, 2, 1, 38, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-08-2', 0, 'C1-038-08-2', 0, 1, 2, 1, 38, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-09-1', 0, 'C1-038-09-1', 0, 1, 2, 1, 38, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-09-2', 0, 'C1-038-09-2', 0, 1, 2, 1, 38, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-10-1', 0, 'C1-038-10-1', 0, 1, 2, 1, 38, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-10-2', 0, 'C1-038-10-2', 0, 1, 2, 1, 38, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-11-1', 0, 'C1-038-11-1', 0, 1, 2, 1, 38, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-11-2', 0, 'C1-038-11-2', 0, 1, 2, 1, 38, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-12-1', 0, 'C1-038-12-1', 0, 1, 2, 1, 38, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-12-2', 0, 'C1-038-12-2', 0, 1, 2, 1, 38, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-13-1', 0, 'C1-038-13-1', 0, 1, 2, 1, 38, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-13-2', 0, 'C1-038-13-2', 0, 1, 2, 1, 38, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-14-1', 0, 'C1-038-14-1', 0, 1, 2, 1, 38, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-14-2', 0, 'C1-038-14-2', 0, 1, 2, 1, 38, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-15-1', 0, 'C1-038-15-1', 0, 1, 2, 1, 38, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-038-15-2', 0, 'C1-038-15-2', 0, 1, 2, 1, 38, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-01-1', 0, 'C1-039-01-1', 0, 1, 2, 1, 39, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-01-2', 0, 'C1-039-01-2', 0, 1, 2, 1, 39, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-02-1', 0, 'C1-039-02-1', 0, 1, 2, 1, 39, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-02-2', 0, 'C1-039-02-2', 0, 1, 2, 1, 39, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-03-1', 0, 'C1-039-03-1', 0, 1, 2, 1, 39, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-03-2', 0, 'C1-039-03-2', 0, 1, 2, 1, 39, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-04-1', 0, 'C1-039-04-1', 0, 1, 2, 1, 39, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-04-2', 0, 'C1-039-04-2', 0, 1, 2, 1, 39, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-05-1', 0, 'C1-039-05-1', 0, 1, 2, 1, 39, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-05-2', 0, 'C1-039-05-2', 0, 1, 2, 1, 39, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-06-1', 0, 'C1-039-06-1', 0, 1, 2, 1, 39, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-06-2', 0, 'C1-039-06-2', 0, 1, 2, 1, 39, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-07-1', 0, 'C1-039-07-1', 0, 1, 2, 1, 39, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-07-2', 0, 'C1-039-07-2', 0, 1, 2, 1, 39, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-08-1', 0, 'C1-039-08-1', 0, 1, 2, 1, 39, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-08-2', 0, 'C1-039-08-2', 0, 1, 2, 1, 39, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-09-1', 0, 'C1-039-09-1', 0, 1, 2, 1, 39, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-09-2', 0, 'C1-039-09-2', 0, 1, 2, 1, 39, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-10-1', 0, 'C1-039-10-1', 0, 1, 2, 1, 39, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-10-2', 0, 'C1-039-10-2', 0, 1, 2, 1, 39, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-11-1', 0, 'C1-039-11-1', 0, 1, 2, 1, 39, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-11-2', 0, 'C1-039-11-2', 0, 1, 2, 1, 39, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-12-1', 0, 'C1-039-12-1', 0, 1, 2, 1, 39, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-12-2', 0, 'C1-039-12-2', 0, 1, 2, 1, 39, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-13-1', 0, 'C1-039-13-1', 0, 1, 2, 1, 39, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-13-2', 0, 'C1-039-13-2', 0, 1, 2, 1, 39, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-14-1', 2, 'C1-039-14-1', 0, 1, 2, 1, 39, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-14-2', 0, 'C1-039-14-2', 0, 1, 2, 1, 39, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-15-1', 0, 'C1-039-15-1', 0, 1, 2, 1, 39, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-039-15-2', 0, 'C1-039-15-2', 0, 1, 2, 1, 39, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-01-1', 0, 'C1-040-01-1', 0, 1, 2, 1, 40, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-01-2', 0, 'C1-040-01-2', 0, 1, 2, 1, 40, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-02-1', 0, 'C1-040-02-1', 0, 1, 2, 1, 40, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-02-2', 0, 'C1-040-02-2', 0, 1, 2, 1, 40, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-03-1', 0, 'C1-040-03-1', 0, 1, 2, 1, 40, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-03-2', 0, 'C1-040-03-2', 0, 1, 2, 1, 40, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-04-1', 0, 'C1-040-04-1', 0, 1, 2, 1, 40, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-04-2', 0, 'C1-040-04-2', 0, 1, 2, 1, 40, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-05-1', 0, 'C1-040-05-1', 0, 1, 2, 1, 40, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-05-2', 0, 'C1-040-05-2', 0, 1, 2, 1, 40, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-06-1', 0, 'C1-040-06-1', 0, 1, 2, 1, 40, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-06-2', 0, 'C1-040-06-2', 0, 1, 2, 1, 40, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-07-1', 0, 'C1-040-07-1', 0, 1, 2, 1, 40, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-07-2', 0, 'C1-040-07-2', 0, 1, 2, 1, 40, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-08-1', 0, 'C1-040-08-1', 0, 1, 2, 1, 40, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-08-2', 0, 'C1-040-08-2', 0, 1, 2, 1, 40, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-09-1', 0, 'C1-040-09-1', 0, 1, 2, 1, 40, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-09-2', 0, 'C1-040-09-2', 0, 1, 2, 1, 40, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-10-1', 0, 'C1-040-10-1', 0, 1, 2, 1, 40, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-10-2', 0, 'C1-040-10-2', 0, 1, 2, 1, 40, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-11-1', 0, 'C1-040-11-1', 0, 1, 2, 1, 40, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-11-2', 0, 'C1-040-11-2', 0, 1, 2, 1, 40, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-12-1', 0, 'C1-040-12-1', 0, 1, 2, 1, 40, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-12-2', 0, 'C1-040-12-2', 0, 1, 2, 1, 40, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-13-1', 0, 'C1-040-13-1', 0, 1, 2, 1, 40, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-13-2', 0, 'C1-040-13-2', 0, 1, 2, 1, 40, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-14-1', 0, 'C1-040-14-1', 0, 1, 2, 1, 40, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-14-2', 0, 'C1-040-14-2', 0, 1, 2, 1, 40, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-15-1', 0, 'C1-040-15-1', 0, 1, 2, 1, 40, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-040-15-2', 0, 'C1-040-15-2', 0, 1, 2, 1, 40, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-01-1', 0, 'C1-041-01-1', 0, 1, 2, 1, 41, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-01-2', 0, 'C1-041-01-2', 0, 1, 2, 1, 41, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-02-1', 0, 'C1-041-02-1', 0, 1, 2, 1, 41, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-02-2', 0, 'C1-041-02-2', 0, 1, 2, 1, 41, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-03-1', 0, 'C1-041-03-1', 0, 1, 2, 1, 41, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-03-2', 0, 'C1-041-03-2', 0, 1, 2, 1, 41, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-04-1', 0, 'C1-041-04-1', 0, 1, 2, 1, 41, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-04-2', 0, 'C1-041-04-2', 0, 1, 2, 1, 41, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-05-1', 0, 'C1-041-05-1', 0, 1, 2, 1, 41, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-05-2', 0, 'C1-041-05-2', 0, 1, 2, 1, 41, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-06-1', 0, 'C1-041-06-1', 0, 1, 2, 1, 41, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-06-2', 0, 'C1-041-06-2', 0, 1, 2, 1, 41, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-07-1', 0, 'C1-041-07-1', 0, 1, 2, 1, 41, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-07-2', 0, 'C1-041-07-2', 0, 1, 2, 1, 41, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-08-1', 0, 'C1-041-08-1', 0, 1, 2, 1, 41, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-08-2', 0, 'C1-041-08-2', 0, 1, 2, 1, 41, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-09-1', 0, 'C1-041-09-1', 0, 1, 2, 1, 41, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-09-2', 0, 'C1-041-09-2', 0, 1, 2, 1, 41, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-10-1', 0, 'C1-041-10-1', 0, 1, 2, 1, 41, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-10-2', 0, 'C1-041-10-2', 0, 1, 2, 1, 41, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-11-1', 0, 'C1-041-11-1', 0, 1, 2, 1, 41, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-11-2', 0, 'C1-041-11-2', 0, 1, 2, 1, 41, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-12-1', 0, 'C1-041-12-1', 0, 1, 2, 1, 41, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-12-2', 0, 'C1-041-12-2', 0, 1, 2, 1, 41, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-13-1', 0, 'C1-041-13-1', 0, 1, 2, 1, 41, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-13-2', 0, 'C1-041-13-2', 0, 1, 2, 1, 41, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-14-1', 0, 'C1-041-14-1', 0, 1, 2, 1, 41, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-14-2', 0, 'C1-041-14-2', 0, 1, 2, 1, 41, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-15-1', 0, 'C1-041-15-1', 0, 1, 2, 1, 41, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-041-15-2', 0, 'C1-041-15-2', 0, 1, 2, 1, 41, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-01-1', 0, 'C1-042-01-1', 0, 1, 2, 1, 42, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-01-2', 0, 'C1-042-01-2', 0, 1, 2, 1, 42, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-02-1', 0, 'C1-042-02-1', 0, 1, 2, 1, 42, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-02-2', 0, 'C1-042-02-2', 0, 1, 2, 1, 42, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-03-1', 0, 'C1-042-03-1', 0, 1, 2, 1, 42, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-03-2', 0, 'C1-042-03-2', 0, 1, 2, 1, 42, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-04-1', 0, 'C1-042-04-1', 0, 1, 2, 1, 42, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-04-2', 0, 'C1-042-04-2', 0, 1, 2, 1, 42, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-05-1', 0, 'C1-042-05-1', 0, 1, 2, 1, 42, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-05-2', 0, 'C1-042-05-2', 0, 1, 2, 1, 42, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-06-1', 0, 'C1-042-06-1', 0, 1, 2, 1, 42, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-06-2', 0, 'C1-042-06-2', 0, 1, 2, 1, 42, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-07-1', 0, 'C1-042-07-1', 0, 1, 2, 1, 42, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-07-2', 0, 'C1-042-07-2', 0, 1, 2, 1, 42, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-08-1', 0, 'C1-042-08-1', 0, 1, 2, 1, 42, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-08-2', 0, 'C1-042-08-2', 0, 1, 2, 1, 42, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-09-1', 0, 'C1-042-09-1', 0, 1, 2, 1, 42, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-09-2', 0, 'C1-042-09-2', 0, 1, 2, 1, 42, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-10-1', 0, 'C1-042-10-1', 0, 1, 2, 1, 42, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-10-2', 0, 'C1-042-10-2', 0, 1, 2, 1, 42, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-11-1', 0, 'C1-042-11-1', 0, 1, 2, 1, 42, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-11-2', 0, 'C1-042-11-2', 0, 1, 2, 1, 42, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-12-1', 0, 'C1-042-12-1', 0, 1, 2, 1, 42, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-12-2', 0, 'C1-042-12-2', 0, 1, 2, 1, 42, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-13-1', 0, 'C1-042-13-1', 0, 1, 2, 1, 42, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-13-2', 0, 'C1-042-13-2', 0, 1, 2, 1, 42, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-14-1', 0, 'C1-042-14-1', 0, 1, 2, 1, 42, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-14-2', 0, 'C1-042-14-2', 0, 1, 2, 1, 42, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-15-1', 0, 'C1-042-15-1', 0, 1, 2, 1, 42, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-042-15-2', 0, 'C1-042-15-2', 0, 1, 2, 1, 42, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-01-1', 0, 'C1-043-01-1', 0, 1, 2, 1, 43, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-01-2', 0, 'C1-043-01-2', 0, 1, 2, 1, 43, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-02-1', 0, 'C1-043-02-1', 0, 1, 2, 1, 43, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-02-2', 0, 'C1-043-02-2', 0, 1, 2, 1, 43, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-03-1', 0, 'C1-043-03-1', 0, 1, 2, 1, 43, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-03-2', 0, 'C1-043-03-2', 0, 1, 2, 1, 43, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-04-1', 0, 'C1-043-04-1', 0, 1, 2, 1, 43, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-04-2', 0, 'C1-043-04-2', 0, 1, 2, 1, 43, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-05-1', 0, 'C1-043-05-1', 0, 1, 2, 1, 43, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-05-2', 0, 'C1-043-05-2', 0, 1, 2, 1, 43, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-06-1', 0, 'C1-043-06-1', 0, 1, 2, 1, 43, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-06-2', 0, 'C1-043-06-2', 0, 1, 2, 1, 43, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-07-1', 0, 'C1-043-07-1', 0, 1, 2, 1, 43, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-07-2', 0, 'C1-043-07-2', 0, 1, 2, 1, 43, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-08-1', 0, 'C1-043-08-1', 0, 1, 2, 1, 43, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-08-2', 0, 'C1-043-08-2', 0, 1, 2, 1, 43, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-09-1', 0, 'C1-043-09-1', 0, 1, 2, 1, 43, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-09-2', 0, 'C1-043-09-2', 0, 1, 2, 1, 43, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-10-1', 0, 'C1-043-10-1', 0, 1, 2, 1, 43, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-10-2', 0, 'C1-043-10-2', 0, 1, 2, 1, 43, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-11-1', 0, 'C1-043-11-1', 0, 1, 2, 1, 43, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-11-2', 0, 'C1-043-11-2', 0, 1, 2, 1, 43, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-12-1', 0, 'C1-043-12-1', 0, 1, 2, 1, 43, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-12-2', 0, 'C1-043-12-2', 0, 1, 2, 1, 43, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-13-1', 0, 'C1-043-13-1', 0, 1, 2, 1, 43, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-13-2', 0, 'C1-043-13-2', 0, 1, 2, 1, 43, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-14-1', 0, 'C1-043-14-1', 0, 1, 2, 1, 43, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-14-2', 0, 'C1-043-14-2', 0, 1, 2, 1, 43, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-15-1', 0, 'C1-043-15-1', 0, 1, 2, 1, 43, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-043-15-2', 2, 'C1-043-15-2', 0, 1, 2, 1, 43, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-01-1', 0, 'C1-044-01-1', 0, 1, 2, 1, 44, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-01-2', 0, 'C1-044-01-2', 0, 1, 2, 1, 44, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-02-1', 0, 'C1-044-02-1', 0, 1, 2, 1, 44, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-02-2', 0, 'C1-044-02-2', 0, 1, 2, 1, 44, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-03-1', 0, 'C1-044-03-1', 0, 1, 2, 1, 44, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-03-2', 0, 'C1-044-03-2', 0, 1, 2, 1, 44, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-04-1', 0, 'C1-044-04-1', 0, 1, 2, 1, 44, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-04-2', 0, 'C1-044-04-2', 0, 1, 2, 1, 44, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-05-1', 0, 'C1-044-05-1', 0, 1, 2, 1, 44, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-05-2', 0, 'C1-044-05-2', 0, 1, 2, 1, 44, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-06-1', 0, 'C1-044-06-1', 0, 1, 2, 1, 44, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-06-2', 0, 'C1-044-06-2', 0, 1, 2, 1, 44, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-07-1', 0, 'C1-044-07-1', 0, 1, 2, 1, 44, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-07-2', 0, 'C1-044-07-2', 0, 1, 2, 1, 44, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-08-1', 0, 'C1-044-08-1', 0, 1, 2, 1, 44, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-08-2', 0, 'C1-044-08-2', 0, 1, 2, 1, 44, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-09-1', 0, 'C1-044-09-1', 0, 1, 2, 1, 44, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-09-2', 0, 'C1-044-09-2', 0, 1, 2, 1, 44, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-10-1', 0, 'C1-044-10-1', 0, 1, 2, 1, 44, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-10-2', 0, 'C1-044-10-2', 0, 1, 2, 1, 44, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-11-1', 0, 'C1-044-11-1', 0, 1, 2, 1, 44, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-11-2', 0, 'C1-044-11-2', 0, 1, 2, 1, 44, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-12-1', 0, 'C1-044-12-1', 0, 1, 2, 1, 44, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-12-2', 0, 'C1-044-12-2', 0, 1, 2, 1, 44, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-13-1', 0, 'C1-044-13-1', 0, 1, 2, 1, 44, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-13-2', 0, 'C1-044-13-2', 0, 1, 2, 1, 44, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-14-1', 0, 'C1-044-14-1', 0, 1, 2, 1, 44, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-14-2', 1, 'C1-044-14-2', 0, 1, 2, 1, 44, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-15-1', 0, 'C1-044-15-1', 0, 1, 2, 1, 44, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-044-15-2', 0, 'C1-044-15-2', 0, 1, 2, 1, 44, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-01-1', 0, 'C1-045-01-1', 0, 1, 2, 1, 45, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-01-2', 0, 'C1-045-01-2', 0, 1, 2, 1, 45, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-02-1', 0, 'C1-045-02-1', 0, 1, 2, 1, 45, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-02-2', 0, 'C1-045-02-2', 0, 1, 2, 1, 45, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-03-1', 0, 'C1-045-03-1', 0, 1, 2, 1, 45, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-03-2', 0, 'C1-045-03-2', 0, 1, 2, 1, 45, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-04-1', 0, 'C1-045-04-1', 0, 1, 2, 1, 45, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-04-2', 0, 'C1-045-04-2', 0, 1, 2, 1, 45, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-05-1', 0, 'C1-045-05-1', 0, 1, 2, 1, 45, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-05-2', 0, 'C1-045-05-2', 0, 1, 2, 1, 45, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-06-1', 0, 'C1-045-06-1', 0, 1, 2, 1, 45, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-06-2', 0, 'C1-045-06-2', 0, 1, 2, 1, 45, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-07-1', 0, 'C1-045-07-1', 0, 1, 2, 1, 45, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-07-2', 0, 'C1-045-07-2', 0, 1, 2, 1, 45, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-08-1', 0, 'C1-045-08-1', 0, 1, 2, 1, 45, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-08-2', 0, 'C1-045-08-2', 0, 1, 2, 1, 45, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-09-1', 0, 'C1-045-09-1', 0, 1, 2, 1, 45, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-09-2', 0, 'C1-045-09-2', 0, 1, 2, 1, 45, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-10-1', 0, 'C1-045-10-1', 0, 1, 2, 1, 45, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-10-2', 0, 'C1-045-10-2', 0, 1, 2, 1, 45, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-11-1', 0, 'C1-045-11-1', 0, 1, 2, 1, 45, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-11-2', 0, 'C1-045-11-2', 0, 1, 2, 1, 45, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-12-1', 0, 'C1-045-12-1', 0, 1, 2, 1, 45, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-12-2', 0, 'C1-045-12-2', 0, 1, 2, 1, 45, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-13-1', 0, 'C1-045-13-1', 0, 1, 2, 1, 45, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-13-2', 0, 'C1-045-13-2', 0, 1, 2, 1, 45, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-14-1', 0, 'C1-045-14-1', 0, 1, 2, 1, 45, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-14-2', 0, 'C1-045-14-2', 0, 1, 2, 1, 45, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-15-1', 0, 'C1-045-15-1', 0, 1, 2, 1, 45, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-045-15-2', 0, 'C1-045-15-2', 0, 1, 2, 1, 45, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-01-1', 0, 'C1-046-01-1', 0, 1, 2, 1, 46, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-01-2', 0, 'C1-046-01-2', 0, 1, 2, 1, 46, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-02-1', 0, 'C1-046-02-1', 0, 1, 2, 1, 46, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-02-2', 0, 'C1-046-02-2', 0, 1, 2, 1, 46, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-03-1', 0, 'C1-046-03-1', 0, 1, 2, 1, 46, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-03-2', 0, 'C1-046-03-2', 0, 1, 2, 1, 46, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-04-1', 0, 'C1-046-04-1', 0, 1, 2, 1, 46, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-04-2', 0, 'C1-046-04-2', 0, 1, 2, 1, 46, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-05-1', 0, 'C1-046-05-1', 0, 1, 2, 1, 46, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-05-2', 0, 'C1-046-05-2', 0, 1, 2, 1, 46, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-06-1', 0, 'C1-046-06-1', 0, 1, 2, 1, 46, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-06-2', 0, 'C1-046-06-2', 0, 1, 2, 1, 46, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-07-1', 0, 'C1-046-07-1', 0, 1, 2, 1, 46, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-07-2', 0, 'C1-046-07-2', 0, 1, 2, 1, 46, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-08-1', 0, 'C1-046-08-1', 0, 1, 2, 1, 46, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-08-2', 0, 'C1-046-08-2', 0, 1, 2, 1, 46, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-09-1', 0, 'C1-046-09-1', 0, 1, 2, 1, 46, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-09-2', 0, 'C1-046-09-2', 0, 1, 2, 1, 46, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-10-1', 0, 'C1-046-10-1', 0, 1, 2, 1, 46, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-10-2', 0, 'C1-046-10-2', 0, 1, 2, 1, 46, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-11-1', 0, 'C1-046-11-1', 0, 1, 2, 1, 46, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-11-2', 0, 'C1-046-11-2', 0, 1, 2, 1, 46, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-12-1', 0, 'C1-046-12-1', 0, 1, 2, 1, 46, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-12-2', 0, 'C1-046-12-2', 0, 1, 2, 1, 46, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-13-1', 0, 'C1-046-13-1', 0, 1, 2, 1, 46, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-13-2', 0, 'C1-046-13-2', 0, 1, 2, 1, 46, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-14-1', 0, 'C1-046-14-1', 0, 1, 2, 1, 46, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-14-2', 0, 'C1-046-14-2', 0, 1, 2, 1, 46, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-15-1', 0, 'C1-046-15-1', 0, 1, 2, 1, 46, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-046-15-2', 0, 'C1-046-15-2', 0, 1, 2, 1, 46, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-01-1', 0, 'C1-047-01-1', 0, 1, 2, 1, 47, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-01-2', 0, 'C1-047-01-2', 0, 1, 2, 1, 47, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-02-1', 0, 'C1-047-02-1', 0, 1, 2, 1, 47, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-02-2', 0, 'C1-047-02-2', 0, 1, 2, 1, 47, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-03-1', 0, 'C1-047-03-1', 0, 1, 2, 1, 47, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-03-2', 0, 'C1-047-03-2', 0, 1, 2, 1, 47, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-04-1', 0, 'C1-047-04-1', 0, 1, 2, 1, 47, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-04-2', 0, 'C1-047-04-2', 0, 1, 2, 1, 47, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-05-1', 0, 'C1-047-05-1', 0, 1, 2, 1, 47, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-05-2', 0, 'C1-047-05-2', 0, 1, 2, 1, 47, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-06-1', 0, 'C1-047-06-1', 0, 1, 2, 1, 47, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-06-2', 0, 'C1-047-06-2', 0, 1, 2, 1, 47, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-07-1', 0, 'C1-047-07-1', 0, 1, 2, 1, 47, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-07-2', 0, 'C1-047-07-2', 0, 1, 2, 1, 47, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-08-1', 0, 'C1-047-08-1', 0, 1, 2, 1, 47, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-08-2', 0, 'C1-047-08-2', 0, 1, 2, 1, 47, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-09-1', 0, 'C1-047-09-1', 0, 1, 2, 1, 47, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-09-2', 0, 'C1-047-09-2', 0, 1, 2, 1, 47, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-10-1', 0, 'C1-047-10-1', 0, 1, 2, 1, 47, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-10-2', 0, 'C1-047-10-2', 0, 1, 2, 1, 47, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-11-1', 0, 'C1-047-11-1', 0, 1, 2, 1, 47, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-11-2', 0, 'C1-047-11-2', 0, 1, 2, 1, 47, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-12-1', 0, 'C1-047-12-1', 0, 1, 2, 1, 47, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-12-2', 0, 'C1-047-12-2', 0, 1, 2, 1, 47, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-13-1', 0, 'C1-047-13-1', 0, 1, 2, 1, 47, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-13-2', 0, 'C1-047-13-2', 0, 1, 2, 1, 47, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-14-1', 0, 'C1-047-14-1', 0, 1, 2, 1, 47, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-14-2', 9, 'C1-047-14-2', 0, 1, 2, 1, 47, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-15-1', 0, 'C1-047-15-1', 0, 1, 2, 1, 47, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-047-15-2', 0, 'C1-047-15-2', 0, 1, 2, 1, 47, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-01-1', 0, 'C1-048-01-1', 0, 1, 2, 1, 48, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-01-2', 0, 'C1-048-01-2', 0, 1, 2, 1, 48, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-02-1', 0, 'C1-048-02-1', 0, 1, 2, 1, 48, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-02-2', 0, 'C1-048-02-2', 0, 1, 2, 1, 48, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-03-1', 0, 'C1-048-03-1', 0, 1, 2, 1, 48, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-03-2', 0, 'C1-048-03-2', 0, 1, 2, 1, 48, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-04-1', 0, 'C1-048-04-1', 0, 1, 2, 1, 48, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-04-2', 0, 'C1-048-04-2', 0, 1, 2, 1, 48, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-05-1', 0, 'C1-048-05-1', 0, 1, 2, 1, 48, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-05-2', 0, 'C1-048-05-2', 0, 1, 2, 1, 48, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-06-1', 0, 'C1-048-06-1', 0, 1, 2, 1, 48, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-06-2', 0, 'C1-048-06-2', 0, 1, 2, 1, 48, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-07-1', 0, 'C1-048-07-1', 0, 1, 2, 1, 48, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-07-2', 0, 'C1-048-07-2', 0, 1, 2, 1, 48, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-08-1', 0, 'C1-048-08-1', 0, 1, 2, 1, 48, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-08-2', 0, 'C1-048-08-2', 0, 1, 2, 1, 48, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-09-1', 0, 'C1-048-09-1', 0, 1, 2, 1, 48, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-09-2', 0, 'C1-048-09-2', 0, 1, 2, 1, 48, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-10-1', 0, 'C1-048-10-1', 0, 1, 2, 1, 48, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-10-2', 0, 'C1-048-10-2', 0, 1, 2, 1, 48, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-11-1', 0, 'C1-048-11-1', 0, 1, 2, 1, 48, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-11-2', 0, 'C1-048-11-2', 0, 1, 2, 1, 48, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-12-1', 0, 'C1-048-12-1', 0, 1, 2, 1, 48, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-12-2', 0, 'C1-048-12-2', 0, 1, 2, 1, 48, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-13-1', 0, 'C1-048-13-1', 0, 1, 2, 1, 48, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-13-2', 0, 'C1-048-13-2', 0, 1, 2, 1, 48, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-14-1', 0, 'C1-048-14-1', 0, 1, 2, 1, 48, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-14-2', 0, 'C1-048-14-2', 0, 1, 2, 1, 48, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-15-1', 0, 'C1-048-15-1', 0, 1, 2, 1, 48, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-048-15-2', 0, 'C1-048-15-2', 0, 1, 2, 1, 48, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-01-1', 0, 'C1-049-01-1', 0, 1, 2, 1, 49, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-01-2', 0, 'C1-049-01-2', 0, 1, 2, 1, 49, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-02-1', 0, 'C1-049-02-1', 0, 1, 2, 1, 49, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-02-2', 0, 'C1-049-02-2', 0, 1, 2, 1, 49, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-03-1', 0, 'C1-049-03-1', 0, 1, 2, 1, 49, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-03-2', 0, 'C1-049-03-2', 0, 1, 2, 1, 49, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-04-1', 0, 'C1-049-04-1', 0, 1, 2, 1, 49, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-04-2', 0, 'C1-049-04-2', 0, 1, 2, 1, 49, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-05-1', 0, 'C1-049-05-1', 0, 1, 2, 1, 49, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-05-2', 0, 'C1-049-05-2', 0, 1, 2, 1, 49, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-06-1', 0, 'C1-049-06-1', 0, 1, 2, 1, 49, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-06-2', 0, 'C1-049-06-2', 0, 1, 2, 1, 49, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-07-1', 0, 'C1-049-07-1', 0, 1, 2, 1, 49, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-07-2', 0, 'C1-049-07-2', 0, 1, 2, 1, 49, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-08-1', 0, 'C1-049-08-1', 0, 1, 2, 1, 49, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-08-2', 0, 'C1-049-08-2', 0, 1, 2, 1, 49, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-09-1', 0, 'C1-049-09-1', 0, 1, 2, 1, 49, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-09-2', 0, 'C1-049-09-2', 0, 1, 2, 1, 49, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-10-1', 0, 'C1-049-10-1', 0, 1, 2, 1, 49, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-10-2', 0, 'C1-049-10-2', 0, 1, 2, 1, 49, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-11-1', 0, 'C1-049-11-1', 0, 1, 2, 1, 49, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-11-2', 0, 'C1-049-11-2', 0, 1, 2, 1, 49, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-12-1', 0, 'C1-049-12-1', 0, 1, 2, 1, 49, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-12-2', 0, 'C1-049-12-2', 0, 1, 2, 1, 49, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-13-1', 0, 'C1-049-13-1', 0, 1, 2, 1, 49, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-13-2', 0, 'C1-049-13-2', 0, 1, 2, 1, 49, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-14-1', 0, 'C1-049-14-1', 0, 1, 2, 1, 49, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-14-2', 0, 'C1-049-14-2', 0, 1, 2, 1, 49, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-15-1', 0, 'C1-049-15-1', 0, 1, 2, 1, 49, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-049-15-2', 0, 'C1-049-15-2', 0, 1, 2, 1, 49, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-01-1', 0, 'C1-050-01-1', 0, 1, 2, 1, 50, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-01-2', 0, 'C1-050-01-2', 0, 1, 2, 1, 50, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-02-1', 0, 'C1-050-02-1', 0, 1, 2, 1, 50, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-02-2', 0, 'C1-050-02-2', 0, 1, 2, 1, 50, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-03-1', 0, 'C1-050-03-1', 0, 1, 2, 1, 50, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-03-2', 0, 'C1-050-03-2', 0, 1, 2, 1, 50, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-04-1', 0, 'C1-050-04-1', 0, 1, 2, 1, 50, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-04-2', 0, 'C1-050-04-2', 0, 1, 2, 1, 50, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-05-1', 0, 'C1-050-05-1', 0, 1, 2, 1, 50, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-05-2', 0, 'C1-050-05-2', 0, 1, 2, 1, 50, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-06-1', 0, 'C1-050-06-1', 0, 1, 2, 1, 50, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-06-2', 0, 'C1-050-06-2', 0, 1, 2, 1, 50, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-07-1', 0, 'C1-050-07-1', 0, 1, 2, 1, 50, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-07-2', 0, 'C1-050-07-2', 0, 1, 2, 1, 50, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-08-1', 0, 'C1-050-08-1', 0, 1, 2, 1, 50, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-08-2', 0, 'C1-050-08-2', 0, 1, 2, 1, 50, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-09-1', 0, 'C1-050-09-1', 0, 1, 2, 1, 50, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-09-2', 0, 'C1-050-09-2', 0, 1, 2, 1, 50, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-10-1', 0, 'C1-050-10-1', 0, 1, 2, 1, 50, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-10-2', 0, 'C1-050-10-2', 0, 1, 2, 1, 50, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-11-1', 0, 'C1-050-11-1', 0, 1, 2, 1, 50, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-11-2', 0, 'C1-050-11-2', 0, 1, 2, 1, 50, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-12-1', 0, 'C1-050-12-1', 0, 1, 2, 1, 50, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-12-2', 0, 'C1-050-12-2', 0, 1, 2, 1, 50, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-13-1', 0, 'C1-050-13-1', 0, 1, 2, 1, 50, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-13-2', 0, 'C1-050-13-2', 0, 1, 2, 1, 50, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-14-1', 0, 'C1-050-14-1', 0, 1, 2, 1, 50, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-14-2', 0, 'C1-050-14-2', 0, 1, 2, 1, 50, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-15-1', 0, 'C1-050-15-1', 0, 1, 2, 1, 50, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-050-15-2', 0, 'C1-050-15-2', 0, 1, 2, 1, 50, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-01-1', 0, 'C1-051-01-1', 0, 1, 2, 1, 51, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-01-2', 0, 'C1-051-01-2', 0, 1, 2, 1, 51, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-02-1', 0, 'C1-051-02-1', 0, 1, 2, 1, 51, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-02-2', 0, 'C1-051-02-2', 0, 1, 2, 1, 51, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-03-1', 0, 'C1-051-03-1', 0, 1, 2, 1, 51, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-03-2', 0, 'C1-051-03-2', 0, 1, 2, 1, 51, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-04-1', 0, 'C1-051-04-1', 0, 1, 2, 1, 51, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-04-2', 0, 'C1-051-04-2', 0, 1, 2, 1, 51, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-05-1', 0, 'C1-051-05-1', 0, 1, 2, 1, 51, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-05-2', 0, 'C1-051-05-2', 0, 1, 2, 1, 51, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-06-1', 0, 'C1-051-06-1', 0, 1, 2, 1, 51, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-06-2', 0, 'C1-051-06-2', 0, 1, 2, 1, 51, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-07-1', 0, 'C1-051-07-1', 0, 1, 2, 1, 51, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-07-2', 0, 'C1-051-07-2', 0, 1, 2, 1, 51, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-08-1', 0, 'C1-051-08-1', 0, 1, 2, 1, 51, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-08-2', 0, 'C1-051-08-2', 0, 1, 2, 1, 51, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-09-1', 0, 'C1-051-09-1', 0, 1, 2, 1, 51, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-09-2', 0, 'C1-051-09-2', 0, 1, 2, 1, 51, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-10-1', 0, 'C1-051-10-1', 0, 1, 2, 1, 51, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-10-2', 0, 'C1-051-10-2', 0, 1, 2, 1, 51, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-11-1', 0, 'C1-051-11-1', 0, 1, 2, 1, 51, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-11-2', 0, 'C1-051-11-2', 0, 1, 2, 1, 51, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-12-1', 0, 'C1-051-12-1', 0, 1, 2, 1, 51, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-12-2', 0, 'C1-051-12-2', 0, 1, 2, 1, 51, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-13-1', 0, 'C1-051-13-1', 0, 1, 2, 1, 51, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-13-2', 0, 'C1-051-13-2', 0, 1, 2, 1, 51, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-14-1', 0, 'C1-051-14-1', 0, 1, 2, 1, 51, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-14-2', 0, 'C1-051-14-2', 0, 1, 2, 1, 51, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-15-1', 0, 'C1-051-15-1', 0, 1, 2, 1, 51, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-051-15-2', 0, 'C1-051-15-2', 0, 1, 2, 1, 51, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-01-1', 0, 'C1-052-01-1', 0, 1, 2, 1, 52, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-01-2', 0, 'C1-052-01-2', 0, 1, 2, 1, 52, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-02-1', 0, 'C1-052-02-1', 0, 1, 2, 1, 52, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-02-2', 0, 'C1-052-02-2', 0, 1, 2, 1, 52, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-03-1', 0, 'C1-052-03-1', 0, 1, 2, 1, 52, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-03-2', 0, 'C1-052-03-2', 0, 1, 2, 1, 52, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-04-1', 0, 'C1-052-04-1', 0, 1, 2, 1, 52, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-04-2', 0, 'C1-052-04-2', 0, 1, 2, 1, 52, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-05-1', 0, 'C1-052-05-1', 0, 1, 2, 1, 52, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-05-2', 0, 'C1-052-05-2', 0, 1, 2, 1, 52, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-06-1', 0, 'C1-052-06-1', 0, 1, 2, 1, 52, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-06-2', 0, 'C1-052-06-2', 0, 1, 2, 1, 52, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-07-1', 0, 'C1-052-07-1', 0, 1, 2, 1, 52, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-07-2', 0, 'C1-052-07-2', 0, 1, 2, 1, 52, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-08-1', 0, 'C1-052-08-1', 0, 1, 2, 1, 52, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-08-2', 0, 'C1-052-08-2', 0, 1, 2, 1, 52, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-09-1', 0, 'C1-052-09-1', 0, 1, 2, 1, 52, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-09-2', 0, 'C1-052-09-2', 0, 1, 2, 1, 52, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-10-1', 0, 'C1-052-10-1', 0, 1, 2, 1, 52, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-10-2', 0, 'C1-052-10-2', 0, 1, 2, 1, 52, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-11-1', 0, 'C1-052-11-1', 0, 1, 2, 1, 52, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-11-2', 0, 'C1-052-11-2', 0, 1, 2, 1, 52, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-12-1', 0, 'C1-052-12-1', 0, 1, 2, 1, 52, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-12-2', 0, 'C1-052-12-2', 0, 1, 2, 1, 52, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-13-1', 0, 'C1-052-13-1', 0, 1, 2, 1, 52, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-13-2', 0, 'C1-052-13-2', 0, 1, 2, 1, 52, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-14-1', 0, 'C1-052-14-1', 0, 1, 2, 1, 52, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-14-2', 0, 'C1-052-14-2', 0, 1, 2, 1, 52, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-15-1', 0, 'C1-052-15-1', 0, 1, 2, 1, 52, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-052-15-2', 0, 'C1-052-15-2', 0, 1, 2, 1, 52, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-01-1', 0, 'C1-053-01-1', 0, 1, 2, 1, 53, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-01-2', 0, 'C1-053-01-2', 0, 1, 2, 1, 53, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-02-1', 0, 'C1-053-02-1', 0, 1, 2, 1, 53, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-02-2', 0, 'C1-053-02-2', 0, 1, 2, 1, 53, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-03-1', 0, 'C1-053-03-1', 0, 1, 2, 1, 53, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-03-2', 0, 'C1-053-03-2', 0, 1, 2, 1, 53, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-04-1', 0, 'C1-053-04-1', 0, 1, 2, 1, 53, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-04-2', 0, 'C1-053-04-2', 0, 1, 2, 1, 53, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-05-1', 0, 'C1-053-05-1', 0, 1, 2, 1, 53, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-05-2', 0, 'C1-053-05-2', 0, 1, 2, 1, 53, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-06-1', 0, 'C1-053-06-1', 0, 1, 2, 1, 53, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-06-2', 0, 'C1-053-06-2', 0, 1, 2, 1, 53, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-07-1', 0, 'C1-053-07-1', 0, 1, 2, 1, 53, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-07-2', 0, 'C1-053-07-2', 0, 1, 2, 1, 53, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-08-1', 0, 'C1-053-08-1', 0, 1, 2, 1, 53, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-08-2', 0, 'C1-053-08-2', 0, 1, 2, 1, 53, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-09-1', 0, 'C1-053-09-1', 0, 1, 2, 1, 53, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-09-2', 0, 'C1-053-09-2', 0, 1, 2, 1, 53, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-10-1', 0, 'C1-053-10-1', 0, 1, 2, 1, 53, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-10-2', 0, 'C1-053-10-2', 0, 1, 2, 1, 53, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-11-1', 0, 'C1-053-11-1', 0, 1, 2, 1, 53, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-11-2', 0, 'C1-053-11-2', 0, 1, 2, 1, 53, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-12-1', 0, 'C1-053-12-1', 0, 1, 2, 1, 53, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-12-2', 0, 'C1-053-12-2', 0, 1, 2, 1, 53, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-13-1', 0, 'C1-053-13-1', 0, 1, 2, 1, 53, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-13-2', 0, 'C1-053-13-2', 0, 1, 2, 1, 53, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-14-1', 0, 'C1-053-14-1', 0, 1, 2, 1, 53, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-14-2', 0, 'C1-053-14-2', 0, 1, 2, 1, 53, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-15-1', 0, 'C1-053-15-1', 0, 1, 2, 1, 53, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-053-15-2', 0, 'C1-053-15-2', 0, 1, 2, 1, 53, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-01-1', 0, 'C1-054-01-1', 0, 1, 2, 1, 54, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-01-2', 0, 'C1-054-01-2', 0, 1, 2, 1, 54, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-02-1', 0, 'C1-054-02-1', 0, 1, 2, 1, 54, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-02-2', 0, 'C1-054-02-2', 0, 1, 2, 1, 54, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-03-1', 0, 'C1-054-03-1', 0, 1, 2, 1, 54, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-03-2', 0, 'C1-054-03-2', 0, 1, 2, 1, 54, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-04-1', 0, 'C1-054-04-1', 0, 1, 2, 1, 54, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-04-2', 0, 'C1-054-04-2', 0, 1, 2, 1, 54, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-05-1', 0, 'C1-054-05-1', 0, 1, 2, 1, 54, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-05-2', 0, 'C1-054-05-2', 0, 1, 2, 1, 54, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-06-1', 0, 'C1-054-06-1', 0, 1, 2, 1, 54, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-06-2', 0, 'C1-054-06-2', 0, 1, 2, 1, 54, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-07-1', 0, 'C1-054-07-1', 0, 1, 2, 1, 54, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-07-2', 0, 'C1-054-07-2', 0, 1, 2, 1, 54, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-08-1', 0, 'C1-054-08-1', 0, 1, 2, 1, 54, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-08-2', 0, 'C1-054-08-2', 0, 1, 2, 1, 54, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-09-1', 0, 'C1-054-09-1', 0, 1, 2, 1, 54, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-09-2', 0, 'C1-054-09-2', 0, 1, 2, 1, 54, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-10-1', 0, 'C1-054-10-1', 0, 1, 2, 1, 54, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-10-2', 0, 'C1-054-10-2', 0, 1, 2, 1, 54, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-11-1', 0, 'C1-054-11-1', 0, 1, 2, 1, 54, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-11-2', 0, 'C1-054-11-2', 0, 1, 2, 1, 54, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-12-1', 0, 'C1-054-12-1', 0, 1, 2, 1, 54, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-12-2', 0, 'C1-054-12-2', 0, 1, 2, 1, 54, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-13-1', 0, 'C1-054-13-1', 0, 1, 2, 1, 54, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-13-2', 0, 'C1-054-13-2', 0, 1, 2, 1, 54, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-14-1', 0, 'C1-054-14-1', 0, 1, 2, 1, 54, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-14-2', 0, 'C1-054-14-2', 0, 1, 2, 1, 54, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-15-1', 0, 'C1-054-15-1', 0, 1, 2, 1, 54, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-054-15-2', 0, 'C1-054-15-2', 0, 1, 2, 1, 54, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-01-1', 0, 'C1-055-01-1', 0, 1, 2, 1, 55, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-01-2', 0, 'C1-055-01-2', 0, 1, 2, 1, 55, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-02-1', 0, 'C1-055-02-1', 0, 1, 2, 1, 55, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-02-2', 0, 'C1-055-02-2', 0, 1, 2, 1, 55, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-03-1', 0, 'C1-055-03-1', 0, 1, 2, 1, 55, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-03-2', 0, 'C1-055-03-2', 0, 1, 2, 1, 55, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-04-1', 0, 'C1-055-04-1', 0, 1, 2, 1, 55, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-04-2', 0, 'C1-055-04-2', 0, 1, 2, 1, 55, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-05-1', 0, 'C1-055-05-1', 0, 1, 2, 1, 55, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-05-2', 0, 'C1-055-05-2', 0, 1, 2, 1, 55, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-06-1', 0, 'C1-055-06-1', 0, 1, 2, 1, 55, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-06-2', 0, 'C1-055-06-2', 0, 1, 2, 1, 55, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-07-1', 0, 'C1-055-07-1', 0, 1, 2, 1, 55, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-07-2', 0, 'C1-055-07-2', 0, 1, 2, 1, 55, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-08-1', 0, 'C1-055-08-1', 0, 1, 2, 1, 55, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-08-2', 0, 'C1-055-08-2', 0, 1, 2, 1, 55, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-09-1', 0, 'C1-055-09-1', 0, 1, 2, 1, 55, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-09-2', 0, 'C1-055-09-2', 0, 1, 2, 1, 55, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-10-1', 0, 'C1-055-10-1', 0, 1, 2, 1, 55, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-10-2', 0, 'C1-055-10-2', 0, 1, 2, 1, 55, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-11-1', 0, 'C1-055-11-1', 0, 1, 2, 1, 55, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-11-2', 0, 'C1-055-11-2', 0, 1, 2, 1, 55, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-12-1', 0, 'C1-055-12-1', 0, 1, 2, 1, 55, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-12-2', 0, 'C1-055-12-2', 0, 1, 2, 1, 55, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-13-1', 0, 'C1-055-13-1', 0, 1, 2, 1, 55, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-13-2', 0, 'C1-055-13-2', 0, 1, 2, 1, 55, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-14-1', 0, 'C1-055-14-1', 0, 1, 2, 1, 55, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-14-2', 0, 'C1-055-14-2', 0, 1, 2, 1, 55, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-15-1', 0, 'C1-055-15-1', 0, 1, 2, 1, 55, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-055-15-2', 0, 'C1-055-15-2', 0, 1, 2, 1, 55, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-01-1', 0, 'C1-056-01-1', 0, 1, 2, 1, 56, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-01-2', 0, 'C1-056-01-2', 0, 1, 2, 1, 56, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-02-1', 0, 'C1-056-02-1', 0, 1, 2, 1, 56, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-02-2', 0, 'C1-056-02-2', 0, 1, 2, 1, 56, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-03-1', 0, 'C1-056-03-1', 0, 1, 2, 1, 56, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-03-2', 0, 'C1-056-03-2', 0, 1, 2, 1, 56, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-04-1', 0, 'C1-056-04-1', 0, 1, 2, 1, 56, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-04-2', 0, 'C1-056-04-2', 0, 1, 2, 1, 56, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-05-1', 0, 'C1-056-05-1', 0, 1, 2, 1, 56, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-05-2', 0, 'C1-056-05-2', 0, 1, 2, 1, 56, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-06-1', 0, 'C1-056-06-1', 0, 1, 2, 1, 56, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-06-2', 0, 'C1-056-06-2', 0, 1, 2, 1, 56, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-07-1', 0, 'C1-056-07-1', 0, 1, 2, 1, 56, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-07-2', 0, 'C1-056-07-2', 0, 1, 2, 1, 56, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-08-1', 0, 'C1-056-08-1', 0, 1, 2, 1, 56, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-08-2', 0, 'C1-056-08-2', 0, 1, 2, 1, 56, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-09-1', 0, 'C1-056-09-1', 0, 1, 2, 1, 56, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-09-2', 0, 'C1-056-09-2', 0, 1, 2, 1, 56, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-10-1', 0, 'C1-056-10-1', 0, 1, 2, 1, 56, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-10-2', 0, 'C1-056-10-2', 0, 1, 2, 1, 56, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-11-1', 0, 'C1-056-11-1', 0, 1, 2, 1, 56, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-11-2', 0, 'C1-056-11-2', 0, 1, 2, 1, 56, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-12-1', 0, 'C1-056-12-1', 0, 1, 2, 1, 56, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-12-2', 0, 'C1-056-12-2', 0, 1, 2, 1, 56, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-13-1', 0, 'C1-056-13-1', 0, 1, 2, 1, 56, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-13-2', 0, 'C1-056-13-2', 0, 1, 2, 1, 56, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-14-1', 0, 'C1-056-14-1', 0, 1, 2, 1, 56, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-14-2', 0, 'C1-056-14-2', 0, 1, 2, 1, 56, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-15-1', 0, 'C1-056-15-1', 0, 1, 2, 1, 56, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-056-15-2', 0, 'C1-056-15-2', 0, 1, 2, 1, 56, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-01-1', 0, 'C1-057-01-1', 0, 1, 2, 1, 57, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-01-2', 0, 'C1-057-01-2', 0, 1, 2, 1, 57, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-02-1', 0, 'C1-057-02-1', 0, 1, 2, 1, 57, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-02-2', 0, 'C1-057-02-2', 0, 1, 2, 1, 57, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-03-1', 0, 'C1-057-03-1', 0, 1, 2, 1, 57, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-03-2', 0, 'C1-057-03-2', 0, 1, 2, 1, 57, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-04-1', 0, 'C1-057-04-1', 0, 1, 2, 1, 57, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-04-2', 0, 'C1-057-04-2', 0, 1, 2, 1, 57, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-05-1', 0, 'C1-057-05-1', 0, 1, 2, 1, 57, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-05-2', 0, 'C1-057-05-2', 0, 1, 2, 1, 57, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-06-1', 0, 'C1-057-06-1', 0, 1, 2, 1, 57, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-06-2', 0, 'C1-057-06-2', 0, 1, 2, 1, 57, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-07-1', 0, 'C1-057-07-1', 0, 1, 2, 1, 57, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-07-2', 0, 'C1-057-07-2', 0, 1, 2, 1, 57, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-08-1', 0, 'C1-057-08-1', 0, 1, 2, 1, 57, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-08-2', 0, 'C1-057-08-2', 0, 1, 2, 1, 57, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-09-1', 0, 'C1-057-09-1', 0, 1, 2, 1, 57, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-09-2', 0, 'C1-057-09-2', 0, 1, 2, 1, 57, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-10-1', 0, 'C1-057-10-1', 0, 1, 2, 1, 57, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-10-2', 0, 'C1-057-10-2', 0, 1, 2, 1, 57, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-11-1', 0, 'C1-057-11-1', 0, 1, 2, 1, 57, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-11-2', 0, 'C1-057-11-2', 0, 1, 2, 1, 57, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-12-1', 0, 'C1-057-12-1', 0, 1, 2, 1, 57, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-12-2', 0, 'C1-057-12-2', 0, 1, 2, 1, 57, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-13-1', 0, 'C1-057-13-1', 0, 1, 2, 1, 57, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-13-2', 0, 'C1-057-13-2', 0, 1, 2, 1, 57, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-14-1', 0, 'C1-057-14-1', 0, 1, 2, 1, 57, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-14-2', 0, 'C1-057-14-2', 0, 1, 2, 1, 57, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-15-1', 0, 'C1-057-15-1', 0, 1, 2, 1, 57, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-057-15-2', 0, 'C1-057-15-2', 0, 1, 2, 1, 57, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-01-1', 0, 'C1-058-01-1', 0, 1, 2, 1, 58, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-01-2', 0, 'C1-058-01-2', 0, 1, 2, 1, 58, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-02-1', 0, 'C1-058-02-1', 0, 1, 2, 1, 58, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-02-2', 0, 'C1-058-02-2', 0, 1, 2, 1, 58, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-03-1', 0, 'C1-058-03-1', 0, 1, 2, 1, 58, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-03-2', 0, 'C1-058-03-2', 0, 1, 2, 1, 58, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-04-1', 0, 'C1-058-04-1', 0, 1, 2, 1, 58, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-04-2', 0, 'C1-058-04-2', 0, 1, 2, 1, 58, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-05-1', 0, 'C1-058-05-1', 0, 1, 2, 1, 58, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-05-2', 0, 'C1-058-05-2', 0, 1, 2, 1, 58, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-06-1', 0, 'C1-058-06-1', 0, 1, 2, 1, 58, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-06-2', 0, 'C1-058-06-2', 0, 1, 2, 1, 58, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-07-1', 0, 'C1-058-07-1', 0, 1, 2, 1, 58, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-07-2', 0, 'C1-058-07-2', 0, 1, 2, 1, 58, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-08-1', 0, 'C1-058-08-1', 0, 1, 2, 1, 58, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-08-2', 0, 'C1-058-08-2', 0, 1, 2, 1, 58, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-09-1', 0, 'C1-058-09-1', 0, 1, 2, 1, 58, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-09-2', 0, 'C1-058-09-2', 0, 1, 2, 1, 58, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-10-1', 0, 'C1-058-10-1', 0, 1, 2, 1, 58, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-10-2', 0, 'C1-058-10-2', 0, 1, 2, 1, 58, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-11-1', 0, 'C1-058-11-1', 0, 1, 2, 1, 58, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-11-2', 0, 'C1-058-11-2', 0, 1, 2, 1, 58, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-12-1', 0, 'C1-058-12-1', 0, 1, 2, 1, 58, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-12-2', 0, 'C1-058-12-2', 0, 1, 2, 1, 58, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-13-1', 0, 'C1-058-13-1', 0, 1, 2, 1, 58, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-13-2', 0, 'C1-058-13-2', 0, 1, 2, 1, 58, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-14-1', 0, 'C1-058-14-1', 0, 1, 2, 1, 58, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-14-2', 0, 'C1-058-14-2', 0, 1, 2, 1, 58, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-15-1', 0, 'C1-058-15-1', 0, 1, 2, 1, 58, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-058-15-2', 0, 'C1-058-15-2', 0, 1, 2, 1, 58, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-01-1', 0, 'C1-059-01-1', 0, 1, 2, 1, 59, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-01-2', 0, 'C1-059-01-2', 0, 1, 2, 1, 59, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-02-1', 0, 'C1-059-02-1', 0, 1, 2, 1, 59, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-02-2', 0, 'C1-059-02-2', 0, 1, 2, 1, 59, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-03-1', 0, 'C1-059-03-1', 0, 1, 2, 1, 59, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-03-2', 0, 'C1-059-03-2', 0, 1, 2, 1, 59, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-04-1', 0, 'C1-059-04-1', 0, 1, 2, 1, 59, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-04-2', 0, 'C1-059-04-2', 0, 1, 2, 1, 59, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-05-1', 0, 'C1-059-05-1', 0, 1, 2, 1, 59, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-05-2', 0, 'C1-059-05-2', 0, 1, 2, 1, 59, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-06-1', 0, 'C1-059-06-1', 0, 1, 2, 1, 59, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-06-2', 0, 'C1-059-06-2', 0, 1, 2, 1, 59, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-07-1', 0, 'C1-059-07-1', 0, 1, 2, 1, 59, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-07-2', 0, 'C1-059-07-2', 0, 1, 2, 1, 59, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-08-1', 0, 'C1-059-08-1', 0, 1, 2, 1, 59, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-08-2', 0, 'C1-059-08-2', 0, 1, 2, 1, 59, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-09-1', 0, 'C1-059-09-1', 0, 1, 2, 1, 59, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-09-2', 0, 'C1-059-09-2', 0, 1, 2, 1, 59, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-10-1', 0, 'C1-059-10-1', 0, 1, 2, 1, 59, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-10-2', 0, 'C1-059-10-2', 0, 1, 2, 1, 59, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-11-1', 0, 'C1-059-11-1', 0, 1, 2, 1, 59, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-11-2', 0, 'C1-059-11-2', 0, 1, 2, 1, 59, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-12-1', 0, 'C1-059-12-1', 0, 1, 2, 1, 59, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-12-2', 0, 'C1-059-12-2', 0, 1, 2, 1, 59, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-13-1', 0, 'C1-059-13-1', 0, 1, 2, 1, 59, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-13-2', 0, 'C1-059-13-2', 0, 1, 2, 1, 59, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-14-1', 0, 'C1-059-14-1', 0, 1, 2, 1, 59, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-14-2', 0, 'C1-059-14-2', 0, 1, 2, 1, 59, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-15-1', 0, 'C1-059-15-1', 0, 1, 2, 1, 59, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-059-15-2', 0, 'C1-059-15-2', 0, 1, 2, 1, 59, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-01-1', 0, 'C1-060-01-1', 0, 1, 2, 1, 60, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-01-2', 0, 'C1-060-01-2', 0, 1, 2, 1, 60, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-02-1', 0, 'C1-060-02-1', 0, 1, 2, 1, 60, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-02-2', 0, 'C1-060-02-2', 0, 1, 2, 1, 60, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-03-1', 0, 'C1-060-03-1', 0, 1, 2, 1, 60, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-03-2', 0, 'C1-060-03-2', 0, 1, 2, 1, 60, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-04-1', 0, 'C1-060-04-1', 0, 1, 2, 1, 60, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-04-2', 0, 'C1-060-04-2', 0, 1, 2, 1, 60, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-05-1', 0, 'C1-060-05-1', 0, 1, 2, 1, 60, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-05-2', 0, 'C1-060-05-2', 0, 1, 2, 1, 60, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-06-1', 0, 'C1-060-06-1', 0, 1, 2, 1, 60, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-06-2', 0, 'C1-060-06-2', 0, 1, 2, 1, 60, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-07-1', 0, 'C1-060-07-1', 0, 1, 2, 1, 60, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-07-2', 0, 'C1-060-07-2', 0, 1, 2, 1, 60, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-08-1', 0, 'C1-060-08-1', 0, 1, 2, 1, 60, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-08-2', 0, 'C1-060-08-2', 0, 1, 2, 1, 60, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-09-1', 0, 'C1-060-09-1', 0, 1, 2, 1, 60, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-09-2', 0, 'C1-060-09-2', 0, 1, 2, 1, 60, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-10-1', 0, 'C1-060-10-1', 0, 1, 2, 1, 60, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-10-2', 0, 'C1-060-10-2', 0, 1, 2, 1, 60, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-11-1', 0, 'C1-060-11-1', 0, 1, 2, 1, 60, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-11-2', 0, 'C1-060-11-2', 0, 1, 2, 1, 60, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-12-1', 0, 'C1-060-12-1', 0, 1, 2, 1, 60, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-12-2', 0, 'C1-060-12-2', 0, 1, 2, 1, 60, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-13-1', 0, 'C1-060-13-1', 0, 1, 2, 1, 60, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-13-2', 0, 'C1-060-13-2', 0, 1, 2, 1, 60, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-14-1', 0, 'C1-060-14-1', 0, 1, 2, 1, 60, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-14-2', 0, 'C1-060-14-2', 0, 1, 2, 1, 60, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-15-1', 0, 'C1-060-15-1', 0, 1, 2, 1, 60, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-060-15-2', 0, 'C1-060-15-2', 0, 1, 2, 1, 60, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-01-1', 0, 'C1-061-01-1', 0, 1, 2, 1, 61, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-01-2', 0, 'C1-061-01-2', 0, 1, 2, 1, 61, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-02-1', 0, 'C1-061-02-1', 0, 1, 2, 1, 61, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-02-2', 0, 'C1-061-02-2', 0, 1, 2, 1, 61, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-03-1', 0, 'C1-061-03-1', 0, 1, 2, 1, 61, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-03-2', 0, 'C1-061-03-2', 0, 1, 2, 1, 61, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-04-1', 0, 'C1-061-04-1', 0, 1, 2, 1, 61, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-04-2', 0, 'C1-061-04-2', 0, 1, 2, 1, 61, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-05-1', 0, 'C1-061-05-1', 0, 1, 2, 1, 61, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-05-2', 0, 'C1-061-05-2', 0, 1, 2, 1, 61, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-06-1', 0, 'C1-061-06-1', 0, 1, 2, 1, 61, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-06-2', 0, 'C1-061-06-2', 0, 1, 2, 1, 61, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-07-1', 0, 'C1-061-07-1', 0, 1, 2, 1, 61, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-07-2', 0, 'C1-061-07-2', 0, 1, 2, 1, 61, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-08-1', 0, 'C1-061-08-1', 0, 1, 2, 1, 61, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-08-2', 0, 'C1-061-08-2', 0, 1, 2, 1, 61, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-09-1', 0, 'C1-061-09-1', 0, 1, 2, 1, 61, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-09-2', 0, 'C1-061-09-2', 0, 1, 2, 1, 61, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-10-1', 0, 'C1-061-10-1', 0, 1, 2, 1, 61, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-10-2', 0, 'C1-061-10-2', 0, 1, 2, 1, 61, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-11-1', 0, 'C1-061-11-1', 0, 1, 2, 1, 61, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-11-2', 0, 'C1-061-11-2', 0, 1, 2, 1, 61, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-12-1', 0, 'C1-061-12-1', 0, 1, 2, 1, 61, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-12-2', 0, 'C1-061-12-2', 0, 1, 2, 1, 61, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-13-1', 0, 'C1-061-13-1', 0, 1, 2, 1, 61, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-13-2', 0, 'C1-061-13-2', 0, 1, 2, 1, 61, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-14-1', 0, 'C1-061-14-1', 0, 1, 2, 1, 61, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-14-2', 0, 'C1-061-14-2', 0, 1, 2, 1, 61, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-15-1', 0, 'C1-061-15-1', 0, 1, 2, 1, 61, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-061-15-2', 0, 'C1-061-15-2', 0, 1, 2, 1, 61, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-01-1', 0, 'C1-062-01-1', 0, 1, 2, 1, 62, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-01-2', 0, 'C1-062-01-2', 0, 1, 2, 1, 62, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-02-1', 0, 'C1-062-02-1', 0, 1, 2, 1, 62, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-02-2', 0, 'C1-062-02-2', 0, 1, 2, 1, 62, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-03-1', 0, 'C1-062-03-1', 0, 1, 2, 1, 62, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-03-2', 0, 'C1-062-03-2', 0, 1, 2, 1, 62, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-04-1', 0, 'C1-062-04-1', 0, 1, 2, 1, 62, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-04-2', 0, 'C1-062-04-2', 0, 1, 2, 1, 62, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-05-1', 0, 'C1-062-05-1', 0, 1, 2, 1, 62, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-05-2', 0, 'C1-062-05-2', 0, 1, 2, 1, 62, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-06-1', 0, 'C1-062-06-1', 0, 1, 2, 1, 62, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-06-2', 0, 'C1-062-06-2', 0, 1, 2, 1, 62, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-07-1', 0, 'C1-062-07-1', 0, 1, 2, 1, 62, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-07-2', 0, 'C1-062-07-2', 0, 1, 2, 1, 62, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-08-1', 0, 'C1-062-08-1', 0, 1, 2, 1, 62, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-08-2', 0, 'C1-062-08-2', 0, 1, 2, 1, 62, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-09-1', 0, 'C1-062-09-1', 0, 1, 2, 1, 62, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-09-2', 0, 'C1-062-09-2', 0, 1, 2, 1, 62, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-10-1', 0, 'C1-062-10-1', 0, 1, 2, 1, 62, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-10-2', 0, 'C1-062-10-2', 0, 1, 2, 1, 62, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-11-1', 0, 'C1-062-11-1', 0, 1, 2, 1, 62, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-11-2', 0, 'C1-062-11-2', 0, 1, 2, 1, 62, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-12-1', 0, 'C1-062-12-1', 0, 1, 2, 1, 62, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-12-2', 0, 'C1-062-12-2', 0, 1, 2, 1, 62, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-13-1', 0, 'C1-062-13-1', 0, 1, 2, 1, 62, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-13-2', 0, 'C1-062-13-2', 0, 1, 2, 1, 62, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-14-1', 0, 'C1-062-14-1', 0, 1, 2, 1, 62, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-14-2', 0, 'C1-062-14-2', 0, 1, 2, 1, 62, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-15-1', 0, 'C1-062-15-1', 0, 1, 2, 1, 62, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-062-15-2', 0, 'C1-062-15-2', 0, 1, 2, 1, 62, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-01-1', 0, 'C1-063-01-1', 0, 1, 2, 1, 63, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-01-2', 0, 'C1-063-01-2', 0, 1, 2, 1, 63, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-02-1', 0, 'C1-063-02-1', 0, 1, 2, 1, 63, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-02-2', 0, 'C1-063-02-2', 0, 1, 2, 1, 63, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-03-1', 0, 'C1-063-03-1', 0, 1, 2, 1, 63, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-03-2', 0, 'C1-063-03-2', 0, 1, 2, 1, 63, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-04-1', 0, 'C1-063-04-1', 0, 1, 2, 1, 63, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-04-2', 0, 'C1-063-04-2', 0, 1, 2, 1, 63, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-05-1', 0, 'C1-063-05-1', 0, 1, 2, 1, 63, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-05-2', 0, 'C1-063-05-2', 0, 1, 2, 1, 63, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-06-1', 0, 'C1-063-06-1', 0, 1, 2, 1, 63, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-06-2', 0, 'C1-063-06-2', 0, 1, 2, 1, 63, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-07-1', 0, 'C1-063-07-1', 0, 1, 2, 1, 63, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-07-2', 0, 'C1-063-07-2', 0, 1, 2, 1, 63, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-08-1', 0, 'C1-063-08-1', 0, 1, 2, 1, 63, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-08-2', 0, 'C1-063-08-2', 0, 1, 2, 1, 63, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-09-1', 0, 'C1-063-09-1', 0, 1, 2, 1, 63, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-09-2', 0, 'C1-063-09-2', 0, 1, 2, 1, 63, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-10-1', 0, 'C1-063-10-1', 0, 1, 2, 1, 63, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-10-2', 0, 'C1-063-10-2', 0, 1, 2, 1, 63, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-11-1', 0, 'C1-063-11-1', 0, 1, 2, 1, 63, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-11-2', 0, 'C1-063-11-2', 0, 1, 2, 1, 63, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-12-1', 0, 'C1-063-12-1', 0, 1, 2, 1, 63, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-12-2', 0, 'C1-063-12-2', 0, 1, 2, 1, 63, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-13-1', 0, 'C1-063-13-1', 0, 1, 2, 1, 63, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-13-2', 0, 'C1-063-13-2', 0, 1, 2, 1, 63, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-14-1', 0, 'C1-063-14-1', 0, 1, 2, 1, 63, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-14-2', 0, 'C1-063-14-2', 0, 1, 2, 1, 63, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-15-1', 0, 'C1-063-15-1', 0, 1, 2, 1, 63, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-063-15-2', 0, 'C1-063-15-2', 0, 1, 2, 1, 63, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-01-1', 0, 'C1-064-01-1', 0, 1, 2, 1, 64, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-01-2', 0, 'C1-064-01-2', 0, 1, 2, 1, 64, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-02-1', 0, 'C1-064-02-1', 0, 1, 2, 1, 64, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-02-2', 0, 'C1-064-02-2', 0, 1, 2, 1, 64, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-03-1', 0, 'C1-064-03-1', 0, 1, 2, 1, 64, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-03-2', 0, 'C1-064-03-2', 0, 1, 2, 1, 64, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-04-1', 0, 'C1-064-04-1', 0, 1, 2, 1, 64, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-04-2', 0, 'C1-064-04-2', 0, 1, 2, 1, 64, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-05-1', 0, 'C1-064-05-1', 0, 1, 2, 1, 64, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-05-2', 0, 'C1-064-05-2', 0, 1, 2, 1, 64, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-06-1', 0, 'C1-064-06-1', 0, 1, 2, 1, 64, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-06-2', 0, 'C1-064-06-2', 0, 1, 2, 1, 64, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-07-1', 0, 'C1-064-07-1', 0, 1, 2, 1, 64, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-07-2', 0, 'C1-064-07-2', 0, 1, 2, 1, 64, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-08-1', 0, 'C1-064-08-1', 0, 1, 2, 1, 64, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-08-2', 0, 'C1-064-08-2', 0, 1, 2, 1, 64, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-09-1', 0, 'C1-064-09-1', 0, 1, 2, 1, 64, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-09-2', 0, 'C1-064-09-2', 0, 1, 2, 1, 64, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-10-1', 0, 'C1-064-10-1', 0, 1, 2, 1, 64, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-10-2', 0, 'C1-064-10-2', 0, 1, 2, 1, 64, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-11-1', 0, 'C1-064-11-1', 0, 1, 2, 1, 64, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-11-2', 0, 'C1-064-11-2', 0, 1, 2, 1, 64, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-12-1', 0, 'C1-064-12-1', 0, 1, 2, 1, 64, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-12-2', 0, 'C1-064-12-2', 0, 1, 2, 1, 64, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-13-1', 0, 'C1-064-13-1', 0, 1, 2, 1, 64, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-13-2', 0, 'C1-064-13-2', 0, 1, 2, 1, 64, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-14-1', 0, 'C1-064-14-1', 0, 1, 2, 1, 64, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-14-2', 0, 'C1-064-14-2', 0, 1, 2, 1, 64, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-15-1', 0, 'C1-064-15-1', 0, 1, 2, 1, 64, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-064-15-2', 0, 'C1-064-15-2', 0, 1, 2, 1, 64, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-01-1', 0, 'C1-065-01-1', 0, 1, 2, 1, 65, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-01-2', 0, 'C1-065-01-2', 0, 1, 2, 1, 65, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-02-1', 0, 'C1-065-02-1', 0, 1, 2, 1, 65, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-02-2', 0, 'C1-065-02-2', 0, 1, 2, 1, 65, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-03-1', 0, 'C1-065-03-1', 0, 1, 2, 1, 65, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-03-2', 0, 'C1-065-03-2', 0, 1, 2, 1, 65, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-04-1', 0, 'C1-065-04-1', 0, 1, 2, 1, 65, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-04-2', 0, 'C1-065-04-2', 0, 1, 2, 1, 65, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-05-1', 0, 'C1-065-05-1', 0, 1, 2, 1, 65, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-05-2', 0, 'C1-065-05-2', 0, 1, 2, 1, 65, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-06-1', 0, 'C1-065-06-1', 0, 1, 2, 1, 65, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-06-2', 0, 'C1-065-06-2', 0, 1, 2, 1, 65, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-07-1', 0, 'C1-065-07-1', 0, 1, 2, 1, 65, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-07-2', 0, 'C1-065-07-2', 0, 1, 2, 1, 65, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-08-1', 0, 'C1-065-08-1', 0, 1, 2, 1, 65, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-08-2', 0, 'C1-065-08-2', 0, 1, 2, 1, 65, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-09-1', 0, 'C1-065-09-1', 0, 1, 2, 1, 65, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-09-2', 0, 'C1-065-09-2', 0, 1, 2, 1, 65, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-10-1', 0, 'C1-065-10-1', 0, 1, 2, 1, 65, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-10-2', 0, 'C1-065-10-2', 0, 1, 2, 1, 65, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-11-1', 0, 'C1-065-11-1', 0, 1, 2, 1, 65, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-11-2', 0, 'C1-065-11-2', 0, 1, 2, 1, 65, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-12-1', 0, 'C1-065-12-1', 0, 1, 2, 1, 65, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-12-2', 0, 'C1-065-12-2', 0, 1, 2, 1, 65, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-13-1', 0, 'C1-065-13-1', 0, 1, 2, 1, 65, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-13-2', 0, 'C1-065-13-2', 0, 1, 2, 1, 65, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-14-1', 0, 'C1-065-14-1', 0, 1, 2, 1, 65, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-14-2', 0, 'C1-065-14-2', 0, 1, 2, 1, 65, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-15-1', 0, 'C1-065-15-1', 0, 1, 2, 1, 65, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-065-15-2', 0, 'C1-065-15-2', 0, 1, 2, 1, 65, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-01-1', 0, 'C1-066-01-1', 0, 1, 2, 1, 66, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-01-2', 0, 'C1-066-01-2', 0, 1, 2, 1, 66, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-02-1', 0, 'C1-066-02-1', 0, 1, 2, 1, 66, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-02-2', 0, 'C1-066-02-2', 0, 1, 2, 1, 66, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-03-1', 0, 'C1-066-03-1', 0, 1, 2, 1, 66, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-03-2', 0, 'C1-066-03-2', 0, 1, 2, 1, 66, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-04-1', 0, 'C1-066-04-1', 0, 1, 2, 1, 66, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-04-2', 0, 'C1-066-04-2', 0, 1, 2, 1, 66, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-05-1', 0, 'C1-066-05-1', 0, 1, 2, 1, 66, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-05-2', 0, 'C1-066-05-2', 0, 1, 2, 1, 66, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-06-1', 0, 'C1-066-06-1', 0, 1, 2, 1, 66, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-06-2', 0, 'C1-066-06-2', 0, 1, 2, 1, 66, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-07-1', 0, 'C1-066-07-1', 0, 1, 2, 1, 66, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-07-2', 0, 'C1-066-07-2', 0, 1, 2, 1, 66, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-08-1', 0, 'C1-066-08-1', 0, 1, 2, 1, 66, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-08-2', 0, 'C1-066-08-2', 0, 1, 2, 1, 66, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-09-1', 0, 'C1-066-09-1', 0, 1, 2, 1, 66, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-09-2', 0, 'C1-066-09-2', 0, 1, 2, 1, 66, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-10-1', 0, 'C1-066-10-1', 0, 1, 2, 1, 66, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-10-2', 0, 'C1-066-10-2', 0, 1, 2, 1, 66, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-11-1', 0, 'C1-066-11-1', 0, 1, 2, 1, 66, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-11-2', 0, 'C1-066-11-2', 0, 1, 2, 1, 66, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-12-1', 0, 'C1-066-12-1', 0, 1, 2, 1, 66, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-12-2', 0, 'C1-066-12-2', 0, 1, 2, 1, 66, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-13-1', 0, 'C1-066-13-1', 0, 1, 2, 1, 66, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-13-2', 0, 'C1-066-13-2', 0, 1, 2, 1, 66, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-14-1', 0, 'C1-066-14-1', 0, 1, 2, 1, 66, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-14-2', 0, 'C1-066-14-2', 0, 1, 2, 1, 66, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-15-1', 0, 'C1-066-15-1', 0, 1, 2, 1, 66, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-066-15-2', 0, 'C1-066-15-2', 0, 1, 2, 1, 66, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-01-1', 0, 'C1-067-01-1', 0, 1, 2, 1, 67, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-01-2', 0, 'C1-067-01-2', 0, 1, 2, 1, 67, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-02-1', 0, 'C1-067-02-1', 0, 1, 2, 1, 67, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-02-2', 0, 'C1-067-02-2', 0, 1, 2, 1, 67, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-03-1', 0, 'C1-067-03-1', 0, 1, 2, 1, 67, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-03-2', 0, 'C1-067-03-2', 0, 1, 2, 1, 67, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-04-1', 0, 'C1-067-04-1', 0, 1, 2, 1, 67, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-04-2', 0, 'C1-067-04-2', 0, 1, 2, 1, 67, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-05-1', 0, 'C1-067-05-1', 0, 1, 2, 1, 67, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-05-2', 0, 'C1-067-05-2', 0, 1, 2, 1, 67, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-06-1', 0, 'C1-067-06-1', 0, 1, 2, 1, 67, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-06-2', 0, 'C1-067-06-2', 0, 1, 2, 1, 67, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-07-1', 0, 'C1-067-07-1', 0, 1, 2, 1, 67, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-07-2', 0, 'C1-067-07-2', 0, 1, 2, 1, 67, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-08-1', 0, 'C1-067-08-1', 0, 1, 2, 1, 67, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-08-2', 0, 'C1-067-08-2', 0, 1, 2, 1, 67, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-09-1', 0, 'C1-067-09-1', 0, 1, 2, 1, 67, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-09-2', 0, 'C1-067-09-2', 0, 1, 2, 1, 67, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-10-1', 0, 'C1-067-10-1', 0, 1, 2, 1, 67, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-10-2', 0, 'C1-067-10-2', 0, 1, 2, 1, 67, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-11-1', 0, 'C1-067-11-1', 0, 1, 2, 1, 67, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-11-2', 0, 'C1-067-11-2', 0, 1, 2, 1, 67, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-12-1', 0, 'C1-067-12-1', 0, 1, 2, 1, 67, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-12-2', 0, 'C1-067-12-2', 0, 1, 2, 1, 67, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-13-1', 0, 'C1-067-13-1', 0, 1, 2, 1, 67, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-13-2', 0, 'C1-067-13-2', 0, 1, 2, 1, 67, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-14-1', 0, 'C1-067-14-1', 0, 1, 2, 1, 67, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-14-2', 0, 'C1-067-14-2', 0, 1, 2, 1, 67, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-15-1', 0, 'C1-067-15-1', 0, 1, 2, 1, 67, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-067-15-2', 0, 'C1-067-15-2', 0, 1, 2, 1, 67, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-01-1', 0, 'C1-068-01-1', 0, 1, 2, 1, 68, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-01-2', 0, 'C1-068-01-2', 0, 1, 2, 1, 68, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-02-1', 0, 'C1-068-02-1', 0, 1, 2, 1, 68, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-02-2', 0, 'C1-068-02-2', 0, 1, 2, 1, 68, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-03-1', 0, 'C1-068-03-1', 0, 1, 2, 1, 68, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-03-2', 0, 'C1-068-03-2', 0, 1, 2, 1, 68, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-04-1', 0, 'C1-068-04-1', 0, 1, 2, 1, 68, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-04-2', 0, 'C1-068-04-2', 0, 1, 2, 1, 68, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-05-1', 0, 'C1-068-05-1', 0, 1, 2, 1, 68, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-05-2', 0, 'C1-068-05-2', 0, 1, 2, 1, 68, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-06-1', 0, 'C1-068-06-1', 0, 1, 2, 1, 68, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-06-2', 0, 'C1-068-06-2', 0, 1, 2, 1, 68, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-07-1', 0, 'C1-068-07-1', 0, 1, 2, 1, 68, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-07-2', 0, 'C1-068-07-2', 0, 1, 2, 1, 68, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-08-1', 0, 'C1-068-08-1', 0, 1, 2, 1, 68, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-08-2', 0, 'C1-068-08-2', 0, 1, 2, 1, 68, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-09-1', 0, 'C1-068-09-1', 0, 1, 2, 1, 68, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-09-2', 0, 'C1-068-09-2', 0, 1, 2, 1, 68, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-10-1', 0, 'C1-068-10-1', 0, 1, 2, 1, 68, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-10-2', 0, 'C1-068-10-2', 0, 1, 2, 1, 68, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-11-1', 0, 'C1-068-11-1', 0, 1, 2, 1, 68, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-11-2', 0, 'C1-068-11-2', 0, 1, 2, 1, 68, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-12-1', 0, 'C1-068-12-1', 0, 1, 2, 1, 68, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-12-2', 0, 'C1-068-12-2', 0, 1, 2, 1, 68, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-13-1', 0, 'C1-068-13-1', 0, 1, 2, 1, 68, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-13-2', 0, 'C1-068-13-2', 0, 1, 2, 1, 68, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-14-1', 0, 'C1-068-14-1', 0, 1, 2, 1, 68, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-14-2', 0, 'C1-068-14-2', 0, 1, 2, 1, 68, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-15-1', 0, 'C1-068-15-1', 0, 1, 2, 1, 68, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-068-15-2', 0, 'C1-068-15-2', 0, 1, 2, 1, 68, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-01-1', 0, 'C1-069-01-1', 0, 1, 2, 1, 69, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-01-2', 0, 'C1-069-01-2', 0, 1, 2, 1, 69, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-02-1', 0, 'C1-069-02-1', 0, 1, 2, 1, 69, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-02-2', 0, 'C1-069-02-2', 0, 1, 2, 1, 69, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-03-1', 0, 'C1-069-03-1', 0, 1, 2, 1, 69, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-03-2', 0, 'C1-069-03-2', 0, 1, 2, 1, 69, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-04-1', 0, 'C1-069-04-1', 0, 1, 2, 1, 69, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-04-2', 0, 'C1-069-04-2', 0, 1, 2, 1, 69, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-05-1', 0, 'C1-069-05-1', 0, 1, 2, 1, 69, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-05-2', 0, 'C1-069-05-2', 0, 1, 2, 1, 69, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-06-1', 0, 'C1-069-06-1', 0, 1, 2, 1, 69, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-06-2', 0, 'C1-069-06-2', 0, 1, 2, 1, 69, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-07-1', 0, 'C1-069-07-1', 0, 1, 2, 1, 69, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-07-2', 0, 'C1-069-07-2', 0, 1, 2, 1, 69, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-08-1', 0, 'C1-069-08-1', 0, 1, 2, 1, 69, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-08-2', 0, 'C1-069-08-2', 0, 1, 2, 1, 69, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-09-1', 0, 'C1-069-09-1', 0, 1, 2, 1, 69, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-09-2', 0, 'C1-069-09-2', 0, 1, 2, 1, 69, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-10-1', 0, 'C1-069-10-1', 0, 1, 2, 1, 69, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-10-2', 0, 'C1-069-10-2', 0, 1, 2, 1, 69, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-11-1', 0, 'C1-069-11-1', 0, 1, 2, 1, 69, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-11-2', 0, 'C1-069-11-2', 0, 1, 2, 1, 69, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-12-1', 0, 'C1-069-12-1', 0, 1, 2, 1, 69, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-12-2', 0, 'C1-069-12-2', 0, 1, 2, 1, 69, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-13-1', 0, 'C1-069-13-1', 0, 1, 2, 1, 69, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-13-2', 0, 'C1-069-13-2', 0, 1, 2, 1, 69, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-14-1', 0, 'C1-069-14-1', 0, 1, 2, 1, 69, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-14-2', 0, 'C1-069-14-2', 0, 1, 2, 1, 69, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-15-1', 0, 'C1-069-15-1', 0, 1, 2, 1, 69, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-069-15-2', 0, 'C1-069-15-2', 0, 1, 2, 1, 69, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-01-1', 0, 'C1-070-01-1', 0, 1, 2, 1, 70, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-01-2', 0, 'C1-070-01-2', 0, 1, 2, 1, 70, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-02-1', 0, 'C1-070-02-1', 0, 1, 2, 1, 70, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-02-2', 0, 'C1-070-02-2', 0, 1, 2, 1, 70, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-03-1', 0, 'C1-070-03-1', 0, 1, 2, 1, 70, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-03-2', 0, 'C1-070-03-2', 0, 1, 2, 1, 70, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-04-1', 0, 'C1-070-04-1', 0, 1, 2, 1, 70, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-04-2', 0, 'C1-070-04-2', 0, 1, 2, 1, 70, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-05-1', 0, 'C1-070-05-1', 0, 1, 2, 1, 70, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-05-2', 0, 'C1-070-05-2', 0, 1, 2, 1, 70, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-06-1', 0, 'C1-070-06-1', 0, 1, 2, 1, 70, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-06-2', 0, 'C1-070-06-2', 0, 1, 2, 1, 70, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-07-1', 0, 'C1-070-07-1', 0, 1, 2, 1, 70, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-07-2', 0, 'C1-070-07-2', 0, 1, 2, 1, 70, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-08-1', 0, 'C1-070-08-1', 0, 1, 2, 1, 70, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-08-2', 0, 'C1-070-08-2', 0, 1, 2, 1, 70, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-09-1', 0, 'C1-070-09-1', 0, 1, 2, 1, 70, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-09-2', 0, 'C1-070-09-2', 0, 1, 2, 1, 70, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-10-1', 0, 'C1-070-10-1', 0, 1, 2, 1, 70, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-10-2', 0, 'C1-070-10-2', 0, 1, 2, 1, 70, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-11-1', 0, 'C1-070-11-1', 0, 1, 2, 1, 70, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-11-2', 0, 'C1-070-11-2', 0, 1, 2, 1, 70, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-12-1', 0, 'C1-070-12-1', 0, 1, 2, 1, 70, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-12-2', 0, 'C1-070-12-2', 0, 1, 2, 1, 70, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-13-1', 0, 'C1-070-13-1', 0, 1, 2, 1, 70, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-13-2', 0, 'C1-070-13-2', 0, 1, 2, 1, 70, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-14-1', 0, 'C1-070-14-1', 0, 1, 2, 1, 70, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-14-2', 0, 'C1-070-14-2', 0, 1, 2, 1, 70, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-15-1', 0, 'C1-070-15-1', 0, 1, 2, 1, 70, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-070-15-2', 0, 'C1-070-15-2', 0, 1, 2, 1, 70, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-01-1', 0, 'C1-071-01-1', 0, 1, 2, 1, 71, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-01-2', 0, 'C1-071-01-2', 0, 1, 2, 1, 71, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-02-1', 0, 'C1-071-02-1', 0, 1, 2, 1, 71, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-02-2', 0, 'C1-071-02-2', 0, 1, 2, 1, 71, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-03-1', 0, 'C1-071-03-1', 0, 1, 2, 1, 71, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-03-2', 0, 'C1-071-03-2', 0, 1, 2, 1, 71, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-04-1', 0, 'C1-071-04-1', 0, 1, 2, 1, 71, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-04-2', 0, 'C1-071-04-2', 0, 1, 2, 1, 71, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-05-1', 0, 'C1-071-05-1', 0, 1, 2, 1, 71, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-05-2', 0, 'C1-071-05-2', 0, 1, 2, 1, 71, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-06-1', 0, 'C1-071-06-1', 0, 1, 2, 1, 71, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-06-2', 0, 'C1-071-06-2', 0, 1, 2, 1, 71, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-07-1', 0, 'C1-071-07-1', 0, 1, 2, 1, 71, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-07-2', 0, 'C1-071-07-2', 0, 1, 2, 1, 71, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-08-1', 0, 'C1-071-08-1', 0, 1, 2, 1, 71, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-08-2', 0, 'C1-071-08-2', 0, 1, 2, 1, 71, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-09-1', 0, 'C1-071-09-1', 0, 1, 2, 1, 71, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-09-2', 0, 'C1-071-09-2', 0, 1, 2, 1, 71, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-10-1', 0, 'C1-071-10-1', 0, 1, 2, 1, 71, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-10-2', 0, 'C1-071-10-2', 0, 1, 2, 1, 71, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-11-1', 0, 'C1-071-11-1', 0, 1, 2, 1, 71, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-11-2', 0, 'C1-071-11-2', 0, 1, 2, 1, 71, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-12-1', 0, 'C1-071-12-1', 0, 1, 2, 1, 71, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-12-2', 0, 'C1-071-12-2', 0, 1, 2, 1, 71, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-13-1', 0, 'C1-071-13-1', 0, 1, 2, 1, 71, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-13-2', 0, 'C1-071-13-2', 0, 1, 2, 1, 71, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-14-1', 0, 'C1-071-14-1', 0, 1, 2, 1, 71, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-14-2', 0, 'C1-071-14-2', 0, 1, 2, 1, 71, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-15-1', 0, 'C1-071-15-1', 0, 1, 2, 1, 71, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-071-15-2', 0, 'C1-071-15-2', 0, 1, 2, 1, 71, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-01-1', 0, 'C1-072-01-1', 0, 1, 2, 1, 72, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-01-2', 0, 'C1-072-01-2', 0, 1, 2, 1, 72, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-02-1', 0, 'C1-072-02-1', 0, 1, 2, 1, 72, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-02-2', 0, 'C1-072-02-2', 0, 1, 2, 1, 72, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-03-1', 0, 'C1-072-03-1', 0, 1, 2, 1, 72, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-03-2', 0, 'C1-072-03-2', 0, 1, 2, 1, 72, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-04-1', 0, 'C1-072-04-1', 0, 1, 2, 1, 72, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-04-2', 0, 'C1-072-04-2', 0, 1, 2, 1, 72, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-05-1', 0, 'C1-072-05-1', 0, 1, 2, 1, 72, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-05-2', 0, 'C1-072-05-2', 0, 1, 2, 1, 72, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-06-1', 0, 'C1-072-06-1', 0, 1, 2, 1, 72, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-06-2', 0, 'C1-072-06-2', 0, 1, 2, 1, 72, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-07-1', 0, 'C1-072-07-1', 0, 1, 2, 1, 72, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-07-2', 0, 'C1-072-07-2', 0, 1, 2, 1, 72, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-08-1', 0, 'C1-072-08-1', 0, 1, 2, 1, 72, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-08-2', 0, 'C1-072-08-2', 0, 1, 2, 1, 72, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-09-1', 0, 'C1-072-09-1', 0, 1, 2, 1, 72, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-09-2', 0, 'C1-072-09-2', 0, 1, 2, 1, 72, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-10-1', 0, 'C1-072-10-1', 0, 1, 2, 1, 72, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-10-2', 0, 'C1-072-10-2', 0, 1, 2, 1, 72, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-11-1', 0, 'C1-072-11-1', 0, 1, 2, 1, 72, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-11-2', 0, 'C1-072-11-2', 0, 1, 2, 1, 72, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-12-1', 0, 'C1-072-12-1', 0, 1, 2, 1, 72, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-12-2', 0, 'C1-072-12-2', 0, 1, 2, 1, 72, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-13-1', 0, 'C1-072-13-1', 0, 1, 2, 1, 72, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-13-2', 0, 'C1-072-13-2', 0, 1, 2, 1, 72, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-14-1', 0, 'C1-072-14-1', 0, 1, 2, 1, 72, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-14-2', 0, 'C1-072-14-2', 0, 1, 2, 1, 72, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-15-1', 0, 'C1-072-15-1', 0, 1, 2, 1, 72, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-072-15-2', 0, 'C1-072-15-2', 0, 1, 2, 1, 72, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-01-1', 0, 'C1-073-01-1', 0, 1, 2, 1, 73, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-01-2', 0, 'C1-073-01-2', 0, 1, 2, 1, 73, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-02-1', 0, 'C1-073-02-1', 0, 1, 2, 1, 73, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-02-2', 0, 'C1-073-02-2', 0, 1, 2, 1, 73, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-03-1', 0, 'C1-073-03-1', 0, 1, 2, 1, 73, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-03-2', 0, 'C1-073-03-2', 0, 1, 2, 1, 73, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-04-1', 0, 'C1-073-04-1', 0, 1, 2, 1, 73, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-04-2', 0, 'C1-073-04-2', 0, 1, 2, 1, 73, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-05-1', 0, 'C1-073-05-1', 0, 1, 2, 1, 73, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-05-2', 0, 'C1-073-05-2', 0, 1, 2, 1, 73, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-06-1', 0, 'C1-073-06-1', 0, 1, 2, 1, 73, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-06-2', 0, 'C1-073-06-2', 0, 1, 2, 1, 73, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-07-1', 0, 'C1-073-07-1', 0, 1, 2, 1, 73, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-07-2', 0, 'C1-073-07-2', 0, 1, 2, 1, 73, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-08-1', 0, 'C1-073-08-1', 0, 1, 2, 1, 73, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-08-2', 0, 'C1-073-08-2', 0, 1, 2, 1, 73, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-09-1', 0, 'C1-073-09-1', 0, 1, 2, 1, 73, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-09-2', 0, 'C1-073-09-2', 0, 1, 2, 1, 73, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-10-1', 0, 'C1-073-10-1', 0, 1, 2, 1, 73, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-10-2', 0, 'C1-073-10-2', 0, 1, 2, 1, 73, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-11-1', 0, 'C1-073-11-1', 0, 1, 2, 1, 73, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-11-2', 0, 'C1-073-11-2', 0, 1, 2, 1, 73, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-12-1', 0, 'C1-073-12-1', 0, 1, 2, 1, 73, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-12-2', 0, 'C1-073-12-2', 0, 1, 2, 1, 73, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-13-1', 0, 'C1-073-13-1', 0, 1, 2, 1, 73, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-13-2', 0, 'C1-073-13-2', 0, 1, 2, 1, 73, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-14-1', 0, 'C1-073-14-1', 0, 1, 2, 1, 73, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-14-2', 0, 'C1-073-14-2', 0, 1, 2, 1, 73, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-15-1', 0, 'C1-073-15-1', 0, 1, 2, 1, 73, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-073-15-2', 0, 'C1-073-15-2', 0, 1, 2, 1, 73, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-01-1', 0, 'C1-074-01-1', 0, 1, 2, 1, 74, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-01-2', 0, 'C1-074-01-2', 0, 1, 2, 1, 74, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-02-1', 0, 'C1-074-02-1', 0, 1, 2, 1, 74, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-02-2', 0, 'C1-074-02-2', 0, 1, 2, 1, 74, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-03-1', 0, 'C1-074-03-1', 0, 1, 2, 1, 74, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-03-2', 0, 'C1-074-03-2', 0, 1, 2, 1, 74, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-04-1', 0, 'C1-074-04-1', 0, 1, 2, 1, 74, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-04-2', 0, 'C1-074-04-2', 0, 1, 2, 1, 74, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-05-1', 0, 'C1-074-05-1', 0, 1, 2, 1, 74, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-05-2', 0, 'C1-074-05-2', 0, 1, 2, 1, 74, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-06-1', 0, 'C1-074-06-1', 0, 1, 2, 1, 74, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-06-2', 0, 'C1-074-06-2', 0, 1, 2, 1, 74, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-07-1', 0, 'C1-074-07-1', 0, 1, 2, 1, 74, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-07-2', 0, 'C1-074-07-2', 0, 1, 2, 1, 74, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-08-1', 0, 'C1-074-08-1', 0, 1, 2, 1, 74, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-08-2', 0, 'C1-074-08-2', 0, 1, 2, 1, 74, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-09-1', 0, 'C1-074-09-1', 0, 1, 2, 1, 74, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-09-2', 0, 'C1-074-09-2', 0, 1, 2, 1, 74, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-10-1', 0, 'C1-074-10-1', 0, 1, 2, 1, 74, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-10-2', 0, 'C1-074-10-2', 0, 1, 2, 1, 74, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-11-1', 0, 'C1-074-11-1', 0, 1, 2, 1, 74, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-11-2', 0, 'C1-074-11-2', 0, 1, 2, 1, 74, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-12-1', 0, 'C1-074-12-1', 0, 1, 2, 1, 74, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-12-2', 0, 'C1-074-12-2', 0, 1, 2, 1, 74, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-13-1', 0, 'C1-074-13-1', 0, 1, 2, 1, 74, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-13-2', 0, 'C1-074-13-2', 0, 1, 2, 1, 74, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-14-1', 0, 'C1-074-14-1', 0, 1, 2, 1, 74, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-14-2', 0, 'C1-074-14-2', 0, 1, 2, 1, 74, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-15-1', 0, 'C1-074-15-1', 0, 1, 2, 1, 74, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-074-15-2', 0, 'C1-074-15-2', 0, 1, 2, 1, 74, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-01-1', 0, 'C1-075-01-1', 0, 1, 2, 1, 75, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-01-2', 0, 'C1-075-01-2', 0, 1, 2, 1, 75, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-02-1', 0, 'C1-075-02-1', 0, 1, 2, 1, 75, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-02-2', 0, 'C1-075-02-2', 0, 1, 2, 1, 75, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-03-1', 0, 'C1-075-03-1', 0, 1, 2, 1, 75, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-03-2', 0, 'C1-075-03-2', 0, 1, 2, 1, 75, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-04-1', 0, 'C1-075-04-1', 0, 1, 2, 1, 75, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-04-2', 0, 'C1-075-04-2', 0, 1, 2, 1, 75, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-05-1', 0, 'C1-075-05-1', 0, 1, 2, 1, 75, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-05-2', 0, 'C1-075-05-2', 0, 1, 2, 1, 75, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-06-1', 0, 'C1-075-06-1', 0, 1, 2, 1, 75, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-06-2', 0, 'C1-075-06-2', 0, 1, 2, 1, 75, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-07-1', 0, 'C1-075-07-1', 0, 1, 2, 1, 75, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-07-2', 0, 'C1-075-07-2', 0, 1, 2, 1, 75, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-08-1', 0, 'C1-075-08-1', 0, 1, 2, 1, 75, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-08-2', 0, 'C1-075-08-2', 0, 1, 2, 1, 75, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-09-1', 0, 'C1-075-09-1', 0, 1, 2, 1, 75, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-09-2', 0, 'C1-075-09-2', 0, 1, 2, 1, 75, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-10-1', 0, 'C1-075-10-1', 0, 1, 2, 1, 75, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-10-2', 0, 'C1-075-10-2', 0, 1, 2, 1, 75, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-11-1', 0, 'C1-075-11-1', 0, 1, 2, 1, 75, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-11-2', 0, 'C1-075-11-2', 0, 1, 2, 1, 75, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-12-1', 0, 'C1-075-12-1', 0, 1, 2, 1, 75, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-12-2', 0, 'C1-075-12-2', 0, 1, 2, 1, 75, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-13-1', 0, 'C1-075-13-1', 0, 1, 2, 1, 75, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-13-2', 0, 'C1-075-13-2', 0, 1, 2, 1, 75, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-14-1', 0, 'C1-075-14-1', 0, 1, 2, 1, 75, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-14-2', 0, 'C1-075-14-2', 0, 1, 2, 1, 75, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-15-1', 0, 'C1-075-15-1', 0, 1, 2, 1, 75, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-075-15-2', 0, 'C1-075-15-2', 0, 1, 2, 1, 75, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-01-1', 0, 'C1-076-01-1', 0, 1, 2, 1, 76, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-01-2', 0, 'C1-076-01-2', 0, 1, 2, 1, 76, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-02-1', 0, 'C1-076-02-1', 0, 1, 2, 1, 76, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-02-2', 0, 'C1-076-02-2', 0, 1, 2, 1, 76, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-03-1', 0, 'C1-076-03-1', 0, 1, 2, 1, 76, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-03-2', 0, 'C1-076-03-2', 0, 1, 2, 1, 76, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-04-1', 0, 'C1-076-04-1', 0, 1, 2, 1, 76, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-04-2', 0, 'C1-076-04-2', 0, 1, 2, 1, 76, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-05-1', 0, 'C1-076-05-1', 0, 1, 2, 1, 76, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-05-2', 0, 'C1-076-05-2', 0, 1, 2, 1, 76, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-06-1', 0, 'C1-076-06-1', 0, 1, 2, 1, 76, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-06-2', 0, 'C1-076-06-2', 0, 1, 2, 1, 76, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-07-1', 0, 'C1-076-07-1', 0, 1, 2, 1, 76, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-07-2', 0, 'C1-076-07-2', 0, 1, 2, 1, 76, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-08-1', 0, 'C1-076-08-1', 0, 1, 2, 1, 76, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-08-2', 0, 'C1-076-08-2', 0, 1, 2, 1, 76, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-09-1', 0, 'C1-076-09-1', 0, 1, 2, 1, 76, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-09-2', 0, 'C1-076-09-2', 0, 1, 2, 1, 76, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-10-1', 0, 'C1-076-10-1', 0, 1, 2, 1, 76, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-10-2', 0, 'C1-076-10-2', 0, 1, 2, 1, 76, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-11-1', 0, 'C1-076-11-1', 0, 1, 2, 1, 76, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-11-2', 0, 'C1-076-11-2', 0, 1, 2, 1, 76, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-12-1', 0, 'C1-076-12-1', 0, 1, 2, 1, 76, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-12-2', 0, 'C1-076-12-2', 0, 1, 2, 1, 76, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-13-1', 0, 'C1-076-13-1', 0, 1, 2, 1, 76, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-13-2', 0, 'C1-076-13-2', 0, 1, 2, 1, 76, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-14-1', 0, 'C1-076-14-1', 0, 1, 2, 1, 76, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-14-2', 0, 'C1-076-14-2', 0, 1, 2, 1, 76, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-15-1', 0, 'C1-076-15-1', 0, 1, 2, 1, 76, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-076-15-2', 0, 'C1-076-15-2', 0, 1, 2, 1, 76, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-01-1', 0, 'C1-077-01-1', 0, 1, 2, 1, 77, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-01-2', 0, 'C1-077-01-2', 0, 1, 2, 1, 77, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-02-1', 0, 'C1-077-02-1', 0, 1, 2, 1, 77, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-02-2', 0, 'C1-077-02-2', 0, 1, 2, 1, 77, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-03-1', 0, 'C1-077-03-1', 0, 1, 2, 1, 77, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-03-2', 0, 'C1-077-03-2', 0, 1, 2, 1, 77, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-04-1', 0, 'C1-077-04-1', 0, 1, 2, 1, 77, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-04-2', 0, 'C1-077-04-2', 0, 1, 2, 1, 77, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-05-1', 0, 'C1-077-05-1', 0, 1, 2, 1, 77, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-05-2', 0, 'C1-077-05-2', 0, 1, 2, 1, 77, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-06-1', 0, 'C1-077-06-1', 0, 1, 2, 1, 77, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-06-2', 0, 'C1-077-06-2', 0, 1, 2, 1, 77, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-07-1', 0, 'C1-077-07-1', 0, 1, 2, 1, 77, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-07-2', 0, 'C1-077-07-2', 0, 1, 2, 1, 77, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-08-1', 0, 'C1-077-08-1', 0, 1, 2, 1, 77, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-08-2', 0, 'C1-077-08-2', 0, 1, 2, 1, 77, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-09-1', 0, 'C1-077-09-1', 0, 1, 2, 1, 77, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-09-2', 0, 'C1-077-09-2', 0, 1, 2, 1, 77, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-10-1', 0, 'C1-077-10-1', 0, 1, 2, 1, 77, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-10-2', 0, 'C1-077-10-2', 0, 1, 2, 1, 77, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-11-1', 0, 'C1-077-11-1', 0, 1, 2, 1, 77, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-11-2', 0, 'C1-077-11-2', 0, 1, 2, 1, 77, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-12-1', 0, 'C1-077-12-1', 0, 1, 2, 1, 77, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-12-2', 0, 'C1-077-12-2', 0, 1, 2, 1, 77, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-13-1', 0, 'C1-077-13-1', 0, 1, 2, 1, 77, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-13-2', 0, 'C1-077-13-2', 0, 1, 2, 1, 77, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-14-1', 0, 'C1-077-14-1', 0, 1, 2, 1, 77, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-14-2', 0, 'C1-077-14-2', 0, 1, 2, 1, 77, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-15-1', 0, 'C1-077-15-1', 0, 1, 2, 1, 77, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-077-15-2', 0, 'C1-077-15-2', 0, 1, 2, 1, 77, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-01-1', 0, 'C1-078-01-1', 0, 1, 2, 1, 78, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-01-2', 0, 'C1-078-01-2', 0, 1, 2, 1, 78, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-02-1', 0, 'C1-078-02-1', 0, 1, 2, 1, 78, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-02-2', 0, 'C1-078-02-2', 0, 1, 2, 1, 78, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-03-1', 0, 'C1-078-03-1', 0, 1, 2, 1, 78, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-03-2', 0, 'C1-078-03-2', 0, 1, 2, 1, 78, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-04-1', 0, 'C1-078-04-1', 0, 1, 2, 1, 78, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-04-2', 0, 'C1-078-04-2', 0, 1, 2, 1, 78, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-05-1', 0, 'C1-078-05-1', 0, 1, 2, 1, 78, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-05-2', 0, 'C1-078-05-2', 0, 1, 2, 1, 78, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-06-1', 0, 'C1-078-06-1', 0, 1, 2, 1, 78, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-06-2', 0, 'C1-078-06-2', 0, 1, 2, 1, 78, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-07-1', 0, 'C1-078-07-1', 0, 1, 2, 1, 78, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-07-2', 0, 'C1-078-07-2', 0, 1, 2, 1, 78, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-08-1', 0, 'C1-078-08-1', 0, 1, 2, 1, 78, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-08-2', 0, 'C1-078-08-2', 0, 1, 2, 1, 78, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-09-1', 0, 'C1-078-09-1', 0, 1, 2, 1, 78, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-09-2', 0, 'C1-078-09-2', 0, 1, 2, 1, 78, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-10-1', 0, 'C1-078-10-1', 0, 1, 2, 1, 78, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-10-2', 0, 'C1-078-10-2', 0, 1, 2, 1, 78, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-11-1', 0, 'C1-078-11-1', 0, 1, 2, 1, 78, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-11-2', 0, 'C1-078-11-2', 0, 1, 2, 1, 78, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-12-1', 0, 'C1-078-12-1', 0, 1, 2, 1, 78, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-12-2', 0, 'C1-078-12-2', 0, 1, 2, 1, 78, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-13-1', 0, 'C1-078-13-1', 0, 1, 2, 1, 78, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-13-2', 0, 'C1-078-13-2', 0, 1, 2, 1, 78, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-14-1', 0, 'C1-078-14-1', 0, 1, 2, 1, 78, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-14-2', 0, 'C1-078-14-2', 0, 1, 2, 1, 78, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-15-1', 0, 'C1-078-15-1', 0, 1, 2, 1, 78, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-078-15-2', 0, 'C1-078-15-2', 0, 1, 2, 1, 78, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-01-1', 0, 'C1-079-01-1', 0, 1, 2, 1, 79, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-01-2', 0, 'C1-079-01-2', 0, 1, 2, 1, 79, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-02-1', 0, 'C1-079-02-1', 0, 1, 2, 1, 79, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-02-2', 0, 'C1-079-02-2', 0, 1, 2, 1, 79, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-03-1', 0, 'C1-079-03-1', 0, 1, 2, 1, 79, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-03-2', 0, 'C1-079-03-2', 0, 1, 2, 1, 79, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-04-1', 0, 'C1-079-04-1', 0, 1, 2, 1, 79, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-04-2', 0, 'C1-079-04-2', 0, 1, 2, 1, 79, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-05-1', 0, 'C1-079-05-1', 0, 1, 2, 1, 79, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-05-2', 0, 'C1-079-05-2', 0, 1, 2, 1, 79, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-06-1', 0, 'C1-079-06-1', 0, 1, 2, 1, 79, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-06-2', 0, 'C1-079-06-2', 0, 1, 2, 1, 79, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-07-1', 0, 'C1-079-07-1', 0, 1, 2, 1, 79, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-07-2', 0, 'C1-079-07-2', 0, 1, 2, 1, 79, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-08-1', 0, 'C1-079-08-1', 0, 1, 2, 1, 79, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-08-2', 0, 'C1-079-08-2', 0, 1, 2, 1, 79, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-09-1', 0, 'C1-079-09-1', 0, 1, 2, 1, 79, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-09-2', 0, 'C1-079-09-2', 0, 1, 2, 1, 79, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-10-1', 0, 'C1-079-10-1', 0, 1, 2, 1, 79, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-10-2', 0, 'C1-079-10-2', 0, 1, 2, 1, 79, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-11-1', 0, 'C1-079-11-1', 0, 1, 2, 1, 79, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-11-2', 0, 'C1-079-11-2', 0, 1, 2, 1, 79, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-12-1', 0, 'C1-079-12-1', 0, 1, 2, 1, 79, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-12-2', 0, 'C1-079-12-2', 0, 1, 2, 1, 79, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-13-1', 0, 'C1-079-13-1', 0, 1, 2, 1, 79, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-13-2', 0, 'C1-079-13-2', 0, 1, 2, 1, 79, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-14-1', 0, 'C1-079-14-1', 0, 1, 2, 1, 79, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-14-2', 0, 'C1-079-14-2', 0, 1, 2, 1, 79, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-15-1', 0, 'C1-079-15-1', 0, 1, 2, 1, 79, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-079-15-2', 0, 'C1-079-15-2', 0, 1, 2, 1, 79, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-01-1', 0, 'C1-080-01-1', 0, 1, 2, 1, 80, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-01-2', 0, 'C1-080-01-2', 0, 1, 2, 1, 80, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-02-1', 0, 'C1-080-02-1', 0, 1, 2, 1, 80, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-02-2', 0, 'C1-080-02-2', 0, 1, 2, 1, 80, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-03-1', 0, 'C1-080-03-1', 0, 1, 2, 1, 80, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-03-2', 0, 'C1-080-03-2', 0, 1, 2, 1, 80, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-04-1', 0, 'C1-080-04-1', 0, 1, 2, 1, 80, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-04-2', 0, 'C1-080-04-2', 0, 1, 2, 1, 80, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-05-1', 0, 'C1-080-05-1', 0, 1, 2, 1, 80, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-05-2', 0, 'C1-080-05-2', 0, 1, 2, 1, 80, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-06-1', 0, 'C1-080-06-1', 0, 1, 2, 1, 80, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-06-2', 0, 'C1-080-06-2', 0, 1, 2, 1, 80, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-07-1', 0, 'C1-080-07-1', 0, 1, 2, 1, 80, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-07-2', 0, 'C1-080-07-2', 0, 1, 2, 1, 80, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-08-1', 0, 'C1-080-08-1', 0, 1, 2, 1, 80, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-08-2', 0, 'C1-080-08-2', 0, 1, 2, 1, 80, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-09-1', 0, 'C1-080-09-1', 0, 1, 2, 1, 80, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-09-2', 0, 'C1-080-09-2', 0, 1, 2, 1, 80, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-10-1', 0, 'C1-080-10-1', 0, 1, 2, 1, 80, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-10-2', 0, 'C1-080-10-2', 0, 1, 2, 1, 80, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-11-1', 0, 'C1-080-11-1', 0, 1, 2, 1, 80, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-11-2', 0, 'C1-080-11-2', 0, 1, 2, 1, 80, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-12-1', 0, 'C1-080-12-1', 0, 1, 2, 1, 80, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-12-2', 0, 'C1-080-12-2', 0, 1, 2, 1, 80, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-13-1', 0, 'C1-080-13-1', 0, 1, 2, 1, 80, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-13-2', 0, 'C1-080-13-2', 0, 1, 2, 1, 80, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-14-1', 0, 'C1-080-14-1', 0, 1, 2, 1, 80, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-14-2', 0, 'C1-080-14-2', 0, 1, 2, 1, 80, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-15-1', 0, 'C1-080-15-1', 0, 1, 2, 1, 80, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-080-15-2', 0, 'C1-080-15-2', 0, 1, 2, 1, 80, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-01-1', 0, 'C1-081-01-1', 0, 1, 2, 1, 81, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-01-2', 0, 'C1-081-01-2', 0, 1, 2, 1, 81, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-02-1', 0, 'C1-081-02-1', 0, 1, 2, 1, 81, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-02-2', 0, 'C1-081-02-2', 0, 1, 2, 1, 81, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-03-1', 0, 'C1-081-03-1', 0, 1, 2, 1, 81, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-03-2', 0, 'C1-081-03-2', 0, 1, 2, 1, 81, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-04-1', 0, 'C1-081-04-1', 0, 1, 2, 1, 81, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-04-2', 0, 'C1-081-04-2', 0, 1, 2, 1, 81, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-05-1', 0, 'C1-081-05-1', 0, 1, 2, 1, 81, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-05-2', 0, 'C1-081-05-2', 0, 1, 2, 1, 81, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-06-1', 0, 'C1-081-06-1', 0, 1, 2, 1, 81, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-06-2', 0, 'C1-081-06-2', 0, 1, 2, 1, 81, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-07-1', 0, 'C1-081-07-1', 0, 1, 2, 1, 81, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-07-2', 0, 'C1-081-07-2', 0, 1, 2, 1, 81, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-08-1', 0, 'C1-081-08-1', 0, 1, 2, 1, 81, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-08-2', 0, 'C1-081-08-2', 0, 1, 2, 1, 81, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-09-1', 0, 'C1-081-09-1', 0, 1, 2, 1, 81, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-09-2', 0, 'C1-081-09-2', 0, 1, 2, 1, 81, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-10-1', 0, 'C1-081-10-1', 0, 1, 2, 1, 81, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-10-2', 0, 'C1-081-10-2', 0, 1, 2, 1, 81, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-11-1', 0, 'C1-081-11-1', 0, 1, 2, 1, 81, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-11-2', 0, 'C1-081-11-2', 0, 1, 2, 1, 81, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-12-1', 0, 'C1-081-12-1', 0, 1, 2, 1, 81, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-12-2', 0, 'C1-081-12-2', 0, 1, 2, 1, 81, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-13-1', 0, 'C1-081-13-1', 0, 1, 2, 1, 81, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-13-2', 0, 'C1-081-13-2', 0, 1, 2, 1, 81, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-14-1', 0, 'C1-081-14-1', 0, 1, 2, 1, 81, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-14-2', 0, 'C1-081-14-2', 0, 1, 2, 1, 81, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-15-1', 2, 'C1-081-15-1', 0, 1, 2, 1, 81, 15, 1, '', '', '2025-10-06 20:07:58', '2025-10-06 20:18:04', '');
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-081-15-2', 0, 'C1-081-15-2', 0, 1, 2, 1, 81, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-01-1', 0, 'C1-082-01-1', 0, 1, 2, 1, 82, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-01-2', 0, 'C1-082-01-2', 0, 1, 2, 1, 82, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-02-1', 0, 'C1-082-02-1', 0, 1, 2, 1, 82, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-02-2', 0, 'C1-082-02-2', 0, 1, 2, 1, 82, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-03-1', 0, 'C1-082-03-1', 0, 1, 2, 1, 82, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-03-2', 0, 'C1-082-03-2', 0, 1, 2, 1, 82, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-04-1', 0, 'C1-082-04-1', 0, 1, 2, 1, 82, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-04-2', 0, 'C1-082-04-2', 0, 1, 2, 1, 82, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-05-1', 0, 'C1-082-05-1', 0, 1, 2, 1, 82, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-05-2', 0, 'C1-082-05-2', 0, 1, 2, 1, 82, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-06-1', 0, 'C1-082-06-1', 0, 1, 2, 1, 82, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-06-2', 0, 'C1-082-06-2', 0, 1, 2, 1, 82, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-07-1', 0, 'C1-082-07-1', 0, 1, 2, 1, 82, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-07-2', 0, 'C1-082-07-2', 0, 1, 2, 1, 82, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-08-1', 0, 'C1-082-08-1', 0, 1, 2, 1, 82, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-08-2', 0, 'C1-082-08-2', 0, 1, 2, 1, 82, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-09-1', 0, 'C1-082-09-1', 0, 1, 2, 1, 82, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-09-2', 0, 'C1-082-09-2', 0, 1, 2, 1, 82, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-10-1', 0, 'C1-082-10-1', 0, 1, 2, 1, 82, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-10-2', 0, 'C1-082-10-2', 0, 1, 2, 1, 82, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-11-1', 0, 'C1-082-11-1', 0, 1, 2, 1, 82, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-11-2', 0, 'C1-082-11-2', 0, 1, 2, 1, 82, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-12-1', 0, 'C1-082-12-1', 0, 1, 2, 1, 82, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-12-2', 0, 'C1-082-12-2', 0, 1, 2, 1, 82, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-13-1', 0, 'C1-082-13-1', 0, 1, 2, 1, 82, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-13-2', 0, 'C1-082-13-2', 0, 1, 2, 1, 82, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-14-1', 0, 'C1-082-14-1', 0, 1, 2, 1, 82, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-14-2', 0, 'C1-082-14-2', 0, 1, 2, 1, 82, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-15-1', 0, 'C1-082-15-1', 0, 1, 2, 1, 82, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-082-15-2', 0, 'C1-082-15-2', 0, 1, 2, 1, 82, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-01-1', 0, 'C1-083-01-1', 0, 1, 2, 1, 83, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-01-2', 0, 'C1-083-01-2', 0, 1, 2, 1, 83, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-02-1', 0, 'C1-083-02-1', 0, 1, 2, 1, 83, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-02-2', 0, 'C1-083-02-2', 0, 1, 2, 1, 83, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-03-1', 0, 'C1-083-03-1', 0, 1, 2, 1, 83, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-03-2', 0, 'C1-083-03-2', 0, 1, 2, 1, 83, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-04-1', 0, 'C1-083-04-1', 0, 1, 2, 1, 83, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-04-2', 0, 'C1-083-04-2', 0, 1, 2, 1, 83, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-05-1', 0, 'C1-083-05-1', 0, 1, 2, 1, 83, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-05-2', 0, 'C1-083-05-2', 0, 1, 2, 1, 83, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-06-1', 0, 'C1-083-06-1', 0, 1, 2, 1, 83, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-06-2', 0, 'C1-083-06-2', 0, 1, 2, 1, 83, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-07-1', 0, 'C1-083-07-1', 0, 1, 2, 1, 83, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-07-2', 0, 'C1-083-07-2', 0, 1, 2, 1, 83, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-08-1', 0, 'C1-083-08-1', 0, 1, 2, 1, 83, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-08-2', 0, 'C1-083-08-2', 0, 1, 2, 1, 83, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-09-1', 0, 'C1-083-09-1', 0, 1, 2, 1, 83, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-09-2', 0, 'C1-083-09-2', 0, 1, 2, 1, 83, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-10-1', 0, 'C1-083-10-1', 0, 1, 2, 1, 83, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-10-2', 0, 'C1-083-10-2', 0, 1, 2, 1, 83, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-11-1', 0, 'C1-083-11-1', 0, 1, 2, 1, 83, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-11-2', 0, 'C1-083-11-2', 0, 1, 2, 1, 83, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-12-1', 0, 'C1-083-12-1', 0, 1, 2, 1, 83, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-12-2', 0, 'C1-083-12-2', 0, 1, 2, 1, 83, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-13-1', 0, 'C1-083-13-1', 0, 1, 2, 1, 83, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-13-2', 0, 'C1-083-13-2', 0, 1, 2, 1, 83, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-14-1', 0, 'C1-083-14-1', 0, 1, 2, 1, 83, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-14-2', 0, 'C1-083-14-2', 0, 1, 2, 1, 83, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-15-1', 0, 'C1-083-15-1', 0, 1, 2, 1, 83, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-083-15-2', 0, 'C1-083-15-2', 0, 1, 2, 1, 83, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-01-1', 0, 'C1-084-01-1', 0, 1, 2, 1, 84, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-01-2', 0, 'C1-084-01-2', 0, 1, 2, 1, 84, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-02-1', 0, 'C1-084-02-1', 0, 1, 2, 1, 84, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-02-2', 0, 'C1-084-02-2', 0, 1, 2, 1, 84, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-03-1', 0, 'C1-084-03-1', 0, 1, 2, 1, 84, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-03-2', 0, 'C1-084-03-2', 0, 1, 2, 1, 84, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-04-1', 0, 'C1-084-04-1', 0, 1, 2, 1, 84, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-04-2', 0, 'C1-084-04-2', 0, 1, 2, 1, 84, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-05-1', 0, 'C1-084-05-1', 0, 1, 2, 1, 84, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-05-2', 0, 'C1-084-05-2', 0, 1, 2, 1, 84, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-06-1', 0, 'C1-084-06-1', 0, 1, 2, 1, 84, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-06-2', 0, 'C1-084-06-2', 0, 1, 2, 1, 84, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-07-1', 0, 'C1-084-07-1', 0, 1, 2, 1, 84, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-07-2', 0, 'C1-084-07-2', 0, 1, 2, 1, 84, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-08-1', 0, 'C1-084-08-1', 0, 1, 2, 1, 84, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-08-2', 0, 'C1-084-08-2', 0, 1, 2, 1, 84, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-09-1', 0, 'C1-084-09-1', 0, 1, 2, 1, 84, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-09-2', 0, 'C1-084-09-2', 0, 1, 2, 1, 84, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-10-1', 0, 'C1-084-10-1', 0, 1, 2, 1, 84, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-10-2', 0, 'C1-084-10-2', 0, 1, 2, 1, 84, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-11-1', 0, 'C1-084-11-1', 0, 1, 2, 1, 84, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-11-2', 0, 'C1-084-11-2', 0, 1, 2, 1, 84, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-12-1', 0, 'C1-084-12-1', 0, 1, 2, 1, 84, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-12-2', 0, 'C1-084-12-2', 0, 1, 2, 1, 84, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-13-1', 0, 'C1-084-13-1', 0, 1, 2, 1, 84, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-13-2', 0, 'C1-084-13-2', 0, 1, 2, 1, 84, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-14-1', 0, 'C1-084-14-1', 0, 1, 2, 1, 84, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-14-2', 0, 'C1-084-14-2', 0, 1, 2, 1, 84, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-15-1', 0, 'C1-084-15-1', 0, 1, 2, 1, 84, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-084-15-2', 0, 'C1-084-15-2', 0, 1, 2, 1, 84, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-01-1', 0, 'C1-085-01-1', 0, 1, 2, 1, 85, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-01-2', 0, 'C1-085-01-2', 0, 1, 2, 1, 85, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-02-1', 0, 'C1-085-02-1', 0, 1, 2, 1, 85, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-02-2', 0, 'C1-085-02-2', 0, 1, 2, 1, 85, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-03-1', 0, 'C1-085-03-1', 0, 1, 2, 1, 85, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-03-2', 0, 'C1-085-03-2', 0, 1, 2, 1, 85, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-04-1', 0, 'C1-085-04-1', 0, 1, 2, 1, 85, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-04-2', 0, 'C1-085-04-2', 0, 1, 2, 1, 85, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-05-1', 0, 'C1-085-05-1', 0, 1, 2, 1, 85, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-05-2', 0, 'C1-085-05-2', 0, 1, 2, 1, 85, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-06-1', 0, 'C1-085-06-1', 0, 1, 2, 1, 85, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-06-2', 0, 'C1-085-06-2', 0, 1, 2, 1, 85, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-07-1', 0, 'C1-085-07-1', 0, 1, 2, 1, 85, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-07-2', 0, 'C1-085-07-2', 0, 1, 2, 1, 85, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-08-1', 0, 'C1-085-08-1', 0, 1, 2, 1, 85, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-08-2', 0, 'C1-085-08-2', 0, 1, 2, 1, 85, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-09-1', 0, 'C1-085-09-1', 0, 1, 2, 1, 85, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-09-2', 0, 'C1-085-09-2', 0, 1, 2, 1, 85, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-10-1', 0, 'C1-085-10-1', 0, 1, 2, 1, 85, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-10-2', 0, 'C1-085-10-2', 0, 1, 2, 1, 85, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-11-1', 0, 'C1-085-11-1', 0, 1, 2, 1, 85, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-11-2', 0, 'C1-085-11-2', 0, 1, 2, 1, 85, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-12-1', 0, 'C1-085-12-1', 0, 1, 2, 1, 85, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-12-2', 0, 'C1-085-12-2', 0, 1, 2, 1, 85, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-13-1', 0, 'C1-085-13-1', 0, 1, 2, 1, 85, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-13-2', 0, 'C1-085-13-2', 0, 1, 2, 1, 85, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-14-1', 0, 'C1-085-14-1', 0, 1, 2, 1, 85, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-14-2', 0, 'C1-085-14-2', 0, 1, 2, 1, 85, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-15-1', 0, 'C1-085-15-1', 0, 1, 2, 1, 85, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-085-15-2', 0, 'C1-085-15-2', 0, 1, 2, 1, 85, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-01-1', 0, 'C1-086-01-1', 0, 1, 2, 1, 86, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-01-2', 0, 'C1-086-01-2', 0, 1, 2, 1, 86, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-02-1', 0, 'C1-086-02-1', 0, 1, 2, 1, 86, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-02-2', 0, 'C1-086-02-2', 0, 1, 2, 1, 86, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-03-1', 0, 'C1-086-03-1', 0, 1, 2, 1, 86, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-03-2', 0, 'C1-086-03-2', 0, 1, 2, 1, 86, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-04-1', 0, 'C1-086-04-1', 0, 1, 2, 1, 86, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-04-2', 0, 'C1-086-04-2', 0, 1, 2, 1, 86, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-05-1', 0, 'C1-086-05-1', 0, 1, 2, 1, 86, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-05-2', 0, 'C1-086-05-2', 0, 1, 2, 1, 86, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-06-1', 0, 'C1-086-06-1', 0, 1, 2, 1, 86, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-06-2', 0, 'C1-086-06-2', 0, 1, 2, 1, 86, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-07-1', 0, 'C1-086-07-1', 0, 1, 2, 1, 86, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-07-2', 0, 'C1-086-07-2', 0, 1, 2, 1, 86, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-08-1', 0, 'C1-086-08-1', 0, 1, 2, 1, 86, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-08-2', 0, 'C1-086-08-2', 0, 1, 2, 1, 86, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-09-1', 0, 'C1-086-09-1', 0, 1, 2, 1, 86, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-09-2', 0, 'C1-086-09-2', 0, 1, 2, 1, 86, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-10-1', 0, 'C1-086-10-1', 0, 1, 2, 1, 86, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-10-2', 0, 'C1-086-10-2', 0, 1, 2, 1, 86, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-11-1', 0, 'C1-086-11-1', 0, 1, 2, 1, 86, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-11-2', 0, 'C1-086-11-2', 0, 1, 2, 1, 86, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-12-1', 0, 'C1-086-12-1', 0, 1, 2, 1, 86, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-12-2', 0, 'C1-086-12-2', 0, 1, 2, 1, 86, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-13-1', 0, 'C1-086-13-1', 0, 1, 2, 1, 86, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-13-2', 0, 'C1-086-13-2', 0, 1, 2, 1, 86, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-14-1', 0, 'C1-086-14-1', 0, 1, 2, 1, 86, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-14-2', 0, 'C1-086-14-2', 0, 1, 2, 1, 86, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-15-1', 0, 'C1-086-15-1', 0, 1, 2, 1, 86, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-086-15-2', 0, 'C1-086-15-2', 0, 1, 2, 1, 86, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-01-1', 0, 'C1-087-01-1', 0, 1, 2, 1, 87, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-01-2', 0, 'C1-087-01-2', 0, 1, 2, 1, 87, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-02-1', 0, 'C1-087-02-1', 0, 1, 2, 1, 87, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-02-2', 0, 'C1-087-02-2', 0, 1, 2, 1, 87, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-03-1', 0, 'C1-087-03-1', 0, 1, 2, 1, 87, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-03-2', 0, 'C1-087-03-2', 0, 1, 2, 1, 87, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-04-1', 0, 'C1-087-04-1', 0, 1, 2, 1, 87, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-04-2', 0, 'C1-087-04-2', 0, 1, 2, 1, 87, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-05-1', 0, 'C1-087-05-1', 0, 1, 2, 1, 87, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-05-2', 0, 'C1-087-05-2', 0, 1, 2, 1, 87, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-06-1', 0, 'C1-087-06-1', 0, 1, 2, 1, 87, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-06-2', 0, 'C1-087-06-2', 0, 1, 2, 1, 87, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-07-1', 0, 'C1-087-07-1', 0, 1, 2, 1, 87, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-07-2', 0, 'C1-087-07-2', 0, 1, 2, 1, 87, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-08-1', 0, 'C1-087-08-1', 0, 1, 2, 1, 87, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-08-2', 0, 'C1-087-08-2', 0, 1, 2, 1, 87, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-09-1', 0, 'C1-087-09-1', 0, 1, 2, 1, 87, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-09-2', 0, 'C1-087-09-2', 0, 1, 2, 1, 87, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-10-1', 0, 'C1-087-10-1', 0, 1, 2, 1, 87, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-10-2', 0, 'C1-087-10-2', 0, 1, 2, 1, 87, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-11-1', 0, 'C1-087-11-1', 0, 1, 2, 1, 87, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-11-2', 0, 'C1-087-11-2', 0, 1, 2, 1, 87, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-12-1', 0, 'C1-087-12-1', 0, 1, 2, 1, 87, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-12-2', 0, 'C1-087-12-2', 0, 1, 2, 1, 87, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-13-1', 0, 'C1-087-13-1', 0, 1, 2, 1, 87, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-13-2', 0, 'C1-087-13-2', 0, 1, 2, 1, 87, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-14-1', 0, 'C1-087-14-1', 0, 1, 2, 1, 87, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-14-2', 0, 'C1-087-14-2', 0, 1, 2, 1, 87, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-15-1', 0, 'C1-087-15-1', 0, 1, 2, 1, 87, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-087-15-2', 0, 'C1-087-15-2', 0, 1, 2, 1, 87, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-01-1', 0, 'C1-088-01-1', 0, 1, 2, 1, 88, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-01-2', 0, 'C1-088-01-2', 0, 1, 2, 1, 88, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-02-1', 0, 'C1-088-02-1', 0, 1, 2, 1, 88, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-02-2', 0, 'C1-088-02-2', 0, 1, 2, 1, 88, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-03-1', 0, 'C1-088-03-1', 0, 1, 2, 1, 88, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-03-2', 0, 'C1-088-03-2', 0, 1, 2, 1, 88, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-04-1', 0, 'C1-088-04-1', 0, 1, 2, 1, 88, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-04-2', 0, 'C1-088-04-2', 0, 1, 2, 1, 88, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-05-1', 0, 'C1-088-05-1', 0, 1, 2, 1, 88, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-05-2', 0, 'C1-088-05-2', 0, 1, 2, 1, 88, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-06-1', 0, 'C1-088-06-1', 0, 1, 2, 1, 88, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-06-2', 0, 'C1-088-06-2', 0, 1, 2, 1, 88, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-07-1', 0, 'C1-088-07-1', 0, 1, 2, 1, 88, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-07-2', 0, 'C1-088-07-2', 0, 1, 2, 1, 88, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-08-1', 0, 'C1-088-08-1', 0, 1, 2, 1, 88, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-08-2', 0, 'C1-088-08-2', 0, 1, 2, 1, 88, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-09-1', 0, 'C1-088-09-1', 0, 1, 2, 1, 88, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-09-2', 0, 'C1-088-09-2', 0, 1, 2, 1, 88, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-10-1', 0, 'C1-088-10-1', 0, 1, 2, 1, 88, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-10-2', 0, 'C1-088-10-2', 0, 1, 2, 1, 88, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-11-1', 0, 'C1-088-11-1', 0, 1, 2, 1, 88, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-11-2', 0, 'C1-088-11-2', 0, 1, 2, 1, 88, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-12-1', 0, 'C1-088-12-1', 0, 1, 2, 1, 88, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-12-2', 0, 'C1-088-12-2', 0, 1, 2, 1, 88, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-13-1', 0, 'C1-088-13-1', 0, 1, 2, 1, 88, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-13-2', 0, 'C1-088-13-2', 0, 1, 2, 1, 88, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-14-1', 0, 'C1-088-14-1', 0, 1, 2, 1, 88, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-14-2', 0, 'C1-088-14-2', 0, 1, 2, 1, 88, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-15-1', 0, 'C1-088-15-1', 0, 1, 2, 1, 88, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-088-15-2', 0, 'C1-088-15-2', 0, 1, 2, 1, 88, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-01-1', 0, 'C1-089-01-1', 0, 1, 2, 1, 89, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-01-2', 0, 'C1-089-01-2', 0, 1, 2, 1, 89, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-02-1', 0, 'C1-089-02-1', 0, 1, 2, 1, 89, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-02-2', 0, 'C1-089-02-2', 0, 1, 2, 1, 89, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-03-1', 0, 'C1-089-03-1', 0, 1, 2, 1, 89, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-03-2', 0, 'C1-089-03-2', 0, 1, 2, 1, 89, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-04-1', 0, 'C1-089-04-1', 0, 1, 2, 1, 89, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-04-2', 0, 'C1-089-04-2', 0, 1, 2, 1, 89, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-05-1', 0, 'C1-089-05-1', 0, 1, 2, 1, 89, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-05-2', 0, 'C1-089-05-2', 0, 1, 2, 1, 89, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-06-1', 0, 'C1-089-06-1', 0, 1, 2, 1, 89, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-06-2', 0, 'C1-089-06-2', 0, 1, 2, 1, 89, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-07-1', 0, 'C1-089-07-1', 0, 1, 2, 1, 89, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-07-2', 0, 'C1-089-07-2', 0, 1, 2, 1, 89, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-08-1', 0, 'C1-089-08-1', 0, 1, 2, 1, 89, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-08-2', 0, 'C1-089-08-2', 0, 1, 2, 1, 89, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-09-1', 3, 'C1-089-09-1', 0, 1, 2, 1, 89, 9, 1, '', '', '2025-10-06 20:07:58', '2025-10-06 20:17:26', '');
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-09-2', 0, 'C1-089-09-2', 0, 1, 2, 1, 89, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-10-1', 0, 'C1-089-10-1', 0, 1, 2, 1, 89, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-10-2', 0, 'C1-089-10-2', 0, 1, 2, 1, 89, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-11-1', 0, 'C1-089-11-1', 0, 1, 2, 1, 89, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-11-2', 1, 'C1-089-11-2', 0, 1, 2, 1, 89, 11, 2, '', '', '2025-10-06 20:07:58', '2025-10-06 20:17:35', '');
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-12-1', 0, 'C1-089-12-1', 0, 1, 2, 1, 89, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-12-2', 0, 'C1-089-12-2', 0, 1, 2, 1, 89, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-13-1', 9, 'C1-089-13-1', 0, 1, 2, 1, 89, 13, 1, '', '', '2025-10-06 20:07:58', '2025-10-06 20:17:48', '');
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-13-2', 0, 'C1-089-13-2', 0, 1, 2, 1, 89, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-14-1', 0, 'C1-089-14-1', 0, 1, 2, 1, 89, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-14-2', 0, 'C1-089-14-2', 0, 1, 2, 1, 89, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-15-1', 0, 'C1-089-15-1', 0, 1, 2, 1, 89, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-089-15-2', 0, 'C1-089-15-2', 0, 1, 2, 1, 89, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-01-1', 0, 'C1-090-01-1', 0, 1, 2, 1, 90, 1, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-01-2', 0, 'C1-090-01-2', 0, 1, 2, 1, 90, 1, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-02-1', 0, 'C1-090-02-1', 0, 1, 2, 1, 90, 2, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-02-2', 0, 'C1-090-02-2', 0, 1, 2, 1, 90, 2, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-03-1', 0, 'C1-090-03-1', 0, 1, 2, 1, 90, 3, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-03-2', 0, 'C1-090-03-2', 0, 1, 2, 1, 90, 3, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-04-1', 0, 'C1-090-04-1', 0, 1, 2, 1, 90, 4, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-04-2', 0, 'C1-090-04-2', 0, 1, 2, 1, 90, 4, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-05-1', 0, 'C1-090-05-1', 0, 1, 2, 1, 90, 5, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-05-2', 0, 'C1-090-05-2', 0, 1, 2, 1, 90, 5, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-06-1', 0, 'C1-090-06-1', 0, 1, 2, 1, 90, 6, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-06-2', 0, 'C1-090-06-2', 0, 1, 2, 1, 90, 6, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-07-1', 0, 'C1-090-07-1', 0, 1, 2, 1, 90, 7, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-07-2', 0, 'C1-090-07-2', 0, 1, 2, 1, 90, 7, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-08-1', 0, 'C1-090-08-1', 0, 1, 2, 1, 90, 8, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-08-2', 0, 'C1-090-08-2', 0, 1, 2, 1, 90, 8, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-09-1', 0, 'C1-090-09-1', 0, 1, 2, 1, 90, 9, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-09-2', 0, 'C1-090-09-2', 0, 1, 2, 1, 90, 9, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-10-1', 0, 'C1-090-10-1', 0, 1, 2, 1, 90, 10, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-10-2', 0, 'C1-090-10-2', 0, 1, 2, 1, 90, 10, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-11-1', 0, 'C1-090-11-1', 0, 1, 2, 1, 90, 11, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-11-2', 0, 'C1-090-11-2', 0, 1, 2, 1, 90, 11, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-12-1', 0, 'C1-090-12-1', 0, 1, 2, 1, 90, 12, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-12-2', 0, 'C1-090-12-2', 0, 1, 2, 1, 90, 12, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-13-1', 0, 'C1-090-13-1', 0, 1, 2, 1, 90, 13, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-13-2', 0, 'C1-090-13-2', 0, 1, 2, 1, 90, 13, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-14-1', 0, 'C1-090-14-1', 0, 1, 2, 1, 90, 14, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-14-2', 0, 'C1-090-14-2', 0, 1, 2, 1, 90, 14, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-15-1', 0, 'C1-090-15-1', 0, 1, 2, 1, 90, 15, 1, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('C1-090-15-2', 0, 'C1-090-15-2', 0, 1, 2, 1, 90, 15, 2, NULL, NULL, '2025-10-06 20:07:58', '2025-10-06 20:07:58', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-01-1', 0, 'D2-001-01-1', 0, 1, 2, 2, 1, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-01-2', 0, 'D2-001-01-2', 0, 1, 2, 2, 1, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-02-1', 0, 'D2-001-02-1', 0, 1, 2, 2, 1, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-02-2', 0, 'D2-001-02-2', 0, 1, 2, 2, 1, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-03-1', 0, 'D2-001-03-1', 0, 1, 2, 2, 1, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-03-2', 0, 'D2-001-03-2', 0, 1, 2, 2, 1, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-04-1', 0, 'D2-001-04-1', 0, 1, 2, 2, 1, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-04-2', 0, 'D2-001-04-2', 0, 1, 2, 2, 1, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-05-1', 0, 'D2-001-05-1', 0, 1, 2, 2, 1, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-05-2', 0, 'D2-001-05-2', 0, 1, 2, 2, 1, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-06-1', 0, 'D2-001-06-1', 0, 1, 2, 2, 1, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-06-2', 0, 'D2-001-06-2', 0, 1, 2, 2, 1, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-07-1', 0, 'D2-001-07-1', 0, 1, 2, 2, 1, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-07-2', 0, 'D2-001-07-2', 0, 1, 2, 2, 1, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-08-1', 0, 'D2-001-08-1', 0, 1, 2, 2, 1, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-08-2', 0, 'D2-001-08-2', 0, 1, 2, 2, 1, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-09-1', 0, 'D2-001-09-1', 0, 1, 2, 2, 1, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-09-2', 0, 'D2-001-09-2', 0, 1, 2, 2, 1, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-10-1', 0, 'D2-001-10-1', 0, 1, 2, 2, 1, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-10-2', 0, 'D2-001-10-2', 0, 1, 2, 2, 1, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-11-1', 0, 'D2-001-11-1', 0, 1, 2, 2, 1, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-11-2', 0, 'D2-001-11-2', 0, 1, 2, 2, 1, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-12-1', 0, 'D2-001-12-1', 0, 1, 2, 2, 1, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-12-2', 0, 'D2-001-12-2', 0, 1, 2, 2, 1, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-13-1', 0, 'D2-001-13-1', 0, 1, 2, 2, 1, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-13-2', 0, 'D2-001-13-2', 0, 1, 2, 2, 1, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-14-1', 0, 'D2-001-14-1', 0, 1, 2, 2, 1, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-14-2', 0, 'D2-001-14-2', 0, 1, 2, 2, 1, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-15-1', 0, 'D2-001-15-1', 0, 1, 2, 2, 1, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-001-15-2', 0, 'D2-001-15-2', 0, 1, 2, 2, 1, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-01-1', 0, 'D2-002-01-1', 0, 1, 2, 2, 2, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-01-2', 0, 'D2-002-01-2', 0, 1, 2, 2, 2, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-02-1', 0, 'D2-002-02-1', 0, 1, 2, 2, 2, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-02-2', 0, 'D2-002-02-2', 0, 1, 2, 2, 2, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-03-1', 0, 'D2-002-03-1', 0, 1, 2, 2, 2, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-03-2', 0, 'D2-002-03-2', 0, 1, 2, 2, 2, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-04-1', 0, 'D2-002-04-1', 0, 1, 2, 2, 2, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-04-2', 0, 'D2-002-04-2', 0, 1, 2, 2, 2, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-05-1', 0, 'D2-002-05-1', 0, 1, 2, 2, 2, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-05-2', 0, 'D2-002-05-2', 0, 1, 2, 2, 2, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-06-1', 0, 'D2-002-06-1', 0, 1, 2, 2, 2, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-06-2', 0, 'D2-002-06-2', 0, 1, 2, 2, 2, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-07-1', 0, 'D2-002-07-1', 0, 1, 2, 2, 2, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-07-2', 0, 'D2-002-07-2', 0, 1, 2, 2, 2, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-08-1', 0, 'D2-002-08-1', 0, 1, 2, 2, 2, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-08-2', 0, 'D2-002-08-2', 0, 1, 2, 2, 2, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-09-1', 0, 'D2-002-09-1', 0, 1, 2, 2, 2, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-09-2', 0, 'D2-002-09-2', 0, 1, 2, 2, 2, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-10-1', 0, 'D2-002-10-1', 0, 1, 2, 2, 2, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-10-2', 0, 'D2-002-10-2', 0, 1, 2, 2, 2, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-11-1', 0, 'D2-002-11-1', 0, 1, 2, 2, 2, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-11-2', 0, 'D2-002-11-2', 0, 1, 2, 2, 2, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-12-1', 0, 'D2-002-12-1', 0, 1, 2, 2, 2, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-12-2', 0, 'D2-002-12-2', 0, 1, 2, 2, 2, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-13-1', 0, 'D2-002-13-1', 0, 1, 2, 2, 2, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-13-2', 0, 'D2-002-13-2', 0, 1, 2, 2, 2, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-14-1', 0, 'D2-002-14-1', 0, 1, 2, 2, 2, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-14-2', 0, 'D2-002-14-2', 0, 1, 2, 2, 2, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-15-1', 0, 'D2-002-15-1', 0, 1, 2, 2, 2, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-002-15-2', 0, 'D2-002-15-2', 0, 1, 2, 2, 2, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-01-1', 0, 'D2-003-01-1', 0, 1, 2, 2, 3, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-01-2', 0, 'D2-003-01-2', 0, 1, 2, 2, 3, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-02-1', 0, 'D2-003-02-1', 0, 1, 2, 2, 3, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-02-2', 0, 'D2-003-02-2', 0, 1, 2, 2, 3, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-03-1', 0, 'D2-003-03-1', 0, 1, 2, 2, 3, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-03-2', 0, 'D2-003-03-2', 0, 1, 2, 2, 3, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-04-1', 0, 'D2-003-04-1', 0, 1, 2, 2, 3, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-04-2', 0, 'D2-003-04-2', 0, 1, 2, 2, 3, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-05-1', 0, 'D2-003-05-1', 0, 1, 2, 2, 3, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-05-2', 0, 'D2-003-05-2', 0, 1, 2, 2, 3, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-06-1', 0, 'D2-003-06-1', 0, 1, 2, 2, 3, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-06-2', 0, 'D2-003-06-2', 0, 1, 2, 2, 3, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-07-1', 0, 'D2-003-07-1', 0, 1, 2, 2, 3, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-07-2', 0, 'D2-003-07-2', 0, 1, 2, 2, 3, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-08-1', 0, 'D2-003-08-1', 0, 1, 2, 2, 3, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-08-2', 0, 'D2-003-08-2', 0, 1, 2, 2, 3, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-09-1', 0, 'D2-003-09-1', 0, 1, 2, 2, 3, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-09-2', 0, 'D2-003-09-2', 0, 1, 2, 2, 3, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-10-1', 0, 'D2-003-10-1', 0, 1, 2, 2, 3, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-10-2', 0, 'D2-003-10-2', 0, 1, 2, 2, 3, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-11-1', 0, 'D2-003-11-1', 0, 1, 2, 2, 3, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-11-2', 0, 'D2-003-11-2', 0, 1, 2, 2, 3, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-12-1', 0, 'D2-003-12-1', 0, 1, 2, 2, 3, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-12-2', 0, 'D2-003-12-2', 0, 1, 2, 2, 3, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-13-1', 0, 'D2-003-13-1', 0, 1, 2, 2, 3, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-13-2', 0, 'D2-003-13-2', 0, 1, 2, 2, 3, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-14-1', 0, 'D2-003-14-1', 0, 1, 2, 2, 3, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-14-2', 0, 'D2-003-14-2', 0, 1, 2, 2, 3, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-15-1', 0, 'D2-003-15-1', 0, 1, 2, 2, 3, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-003-15-2', 0, 'D2-003-15-2', 0, 1, 2, 2, 3, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-01-1', 0, 'D2-004-01-1', 0, 1, 2, 2, 4, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-01-2', 0, 'D2-004-01-2', 0, 1, 2, 2, 4, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-02-1', 0, 'D2-004-02-1', 0, 1, 2, 2, 4, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-02-2', 0, 'D2-004-02-2', 0, 1, 2, 2, 4, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-03-1', 0, 'D2-004-03-1', 0, 1, 2, 2, 4, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-03-2', 0, 'D2-004-03-2', 0, 1, 2, 2, 4, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-04-1', 0, 'D2-004-04-1', 0, 1, 2, 2, 4, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-04-2', 0, 'D2-004-04-2', 0, 1, 2, 2, 4, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-05-1', 0, 'D2-004-05-1', 0, 1, 2, 2, 4, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-05-2', 0, 'D2-004-05-2', 0, 1, 2, 2, 4, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-06-1', 0, 'D2-004-06-1', 0, 1, 2, 2, 4, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-06-2', 0, 'D2-004-06-2', 0, 1, 2, 2, 4, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-07-1', 0, 'D2-004-07-1', 0, 1, 2, 2, 4, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-07-2', 0, 'D2-004-07-2', 0, 1, 2, 2, 4, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-08-1', 0, 'D2-004-08-1', 0, 1, 2, 2, 4, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-08-2', 0, 'D2-004-08-2', 0, 1, 2, 2, 4, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-09-1', 0, 'D2-004-09-1', 0, 1, 2, 2, 4, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-09-2', 0, 'D2-004-09-2', 0, 1, 2, 2, 4, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-10-1', 0, 'D2-004-10-1', 0, 1, 2, 2, 4, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-10-2', 0, 'D2-004-10-2', 0, 1, 2, 2, 4, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-11-1', 0, 'D2-004-11-1', 0, 1, 2, 2, 4, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-11-2', 0, 'D2-004-11-2', 0, 1, 2, 2, 4, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-12-1', 0, 'D2-004-12-1', 0, 1, 2, 2, 4, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-12-2', 0, 'D2-004-12-2', 0, 1, 2, 2, 4, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-13-1', 0, 'D2-004-13-1', 0, 1, 2, 2, 4, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-13-2', 0, 'D2-004-13-2', 0, 1, 2, 2, 4, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-14-1', 0, 'D2-004-14-1', 0, 1, 2, 2, 4, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-14-2', 0, 'D2-004-14-2', 0, 1, 2, 2, 4, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-15-1', 0, 'D2-004-15-1', 0, 1, 2, 2, 4, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-004-15-2', 0, 'D2-004-15-2', 0, 1, 2, 2, 4, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-01-1', 0, 'D2-005-01-1', 0, 1, 2, 2, 5, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-01-2', 0, 'D2-005-01-2', 0, 1, 2, 2, 5, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-02-1', 0, 'D2-005-02-1', 0, 1, 2, 2, 5, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-02-2', 0, 'D2-005-02-2', 0, 1, 2, 2, 5, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-03-1', 0, 'D2-005-03-1', 0, 1, 2, 2, 5, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-03-2', 0, 'D2-005-03-2', 0, 1, 2, 2, 5, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-04-1', 0, 'D2-005-04-1', 0, 1, 2, 2, 5, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-04-2', 0, 'D2-005-04-2', 0, 1, 2, 2, 5, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-05-1', 0, 'D2-005-05-1', 0, 1, 2, 2, 5, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-05-2', 0, 'D2-005-05-2', 0, 1, 2, 2, 5, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-06-1', 0, 'D2-005-06-1', 0, 1, 2, 2, 5, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-06-2', 0, 'D2-005-06-2', 0, 1, 2, 2, 5, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-07-1', 0, 'D2-005-07-1', 0, 1, 2, 2, 5, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-07-2', 0, 'D2-005-07-2', 0, 1, 2, 2, 5, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-08-1', 0, 'D2-005-08-1', 0, 1, 2, 2, 5, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-08-2', 0, 'D2-005-08-2', 0, 1, 2, 2, 5, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-09-1', 0, 'D2-005-09-1', 0, 1, 2, 2, 5, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-09-2', 0, 'D2-005-09-2', 0, 1, 2, 2, 5, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-10-1', 0, 'D2-005-10-1', 0, 1, 2, 2, 5, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-10-2', 0, 'D2-005-10-2', 0, 1, 2, 2, 5, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-11-1', 0, 'D2-005-11-1', 0, 1, 2, 2, 5, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-11-2', 0, 'D2-005-11-2', 0, 1, 2, 2, 5, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-12-1', 0, 'D2-005-12-1', 0, 1, 2, 2, 5, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-12-2', 0, 'D2-005-12-2', 0, 1, 2, 2, 5, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-13-1', 0, 'D2-005-13-1', 0, 1, 2, 2, 5, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-13-2', 0, 'D2-005-13-2', 0, 1, 2, 2, 5, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-14-1', 0, 'D2-005-14-1', 0, 1, 2, 2, 5, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-14-2', 0, 'D2-005-14-2', 0, 1, 2, 2, 5, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-15-1', 0, 'D2-005-15-1', 0, 1, 2, 2, 5, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-005-15-2', 0, 'D2-005-15-2', 0, 1, 2, 2, 5, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-01-1', 0, 'D2-006-01-1', 0, 1, 2, 2, 6, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-01-2', 0, 'D2-006-01-2', 0, 1, 2, 2, 6, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-02-1', 0, 'D2-006-02-1', 0, 1, 2, 2, 6, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-02-2', 0, 'D2-006-02-2', 0, 1, 2, 2, 6, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-03-1', 0, 'D2-006-03-1', 0, 1, 2, 2, 6, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-03-2', 0, 'D2-006-03-2', 0, 1, 2, 2, 6, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-04-1', 0, 'D2-006-04-1', 0, 1, 2, 2, 6, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-04-2', 0, 'D2-006-04-2', 0, 1, 2, 2, 6, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-05-1', 0, 'D2-006-05-1', 0, 1, 2, 2, 6, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-05-2', 0, 'D2-006-05-2', 0, 1, 2, 2, 6, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-06-1', 0, 'D2-006-06-1', 0, 1, 2, 2, 6, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-06-2', 0, 'D2-006-06-2', 0, 1, 2, 2, 6, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-07-1', 0, 'D2-006-07-1', 0, 1, 2, 2, 6, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-07-2', 0, 'D2-006-07-2', 0, 1, 2, 2, 6, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-08-1', 0, 'D2-006-08-1', 0, 1, 2, 2, 6, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-08-2', 0, 'D2-006-08-2', 0, 1, 2, 2, 6, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-09-1', 0, 'D2-006-09-1', 0, 1, 2, 2, 6, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-09-2', 0, 'D2-006-09-2', 0, 1, 2, 2, 6, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-10-1', 0, 'D2-006-10-1', 0, 1, 2, 2, 6, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-10-2', 0, 'D2-006-10-2', 0, 1, 2, 2, 6, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-11-1', 0, 'D2-006-11-1', 0, 1, 2, 2, 6, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-11-2', 0, 'D2-006-11-2', 0, 1, 2, 2, 6, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-12-1', 0, 'D2-006-12-1', 0, 1, 2, 2, 6, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-12-2', 0, 'D2-006-12-2', 0, 1, 2, 2, 6, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-13-1', 0, 'D2-006-13-1', 0, 1, 2, 2, 6, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-13-2', 0, 'D2-006-13-2', 0, 1, 2, 2, 6, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-14-1', 0, 'D2-006-14-1', 0, 1, 2, 2, 6, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-14-2', 0, 'D2-006-14-2', 0, 1, 2, 2, 6, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-15-1', 0, 'D2-006-15-1', 0, 1, 2, 2, 6, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-006-15-2', 0, 'D2-006-15-2', 0, 1, 2, 2, 6, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-01-1', 0, 'D2-007-01-1', 0, 1, 2, 2, 7, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-01-2', 0, 'D2-007-01-2', 0, 1, 2, 2, 7, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-02-1', 0, 'D2-007-02-1', 0, 1, 2, 2, 7, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-02-2', 0, 'D2-007-02-2', 0, 1, 2, 2, 7, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-03-1', 0, 'D2-007-03-1', 0, 1, 2, 2, 7, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-03-2', 0, 'D2-007-03-2', 0, 1, 2, 2, 7, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-04-1', 0, 'D2-007-04-1', 0, 1, 2, 2, 7, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-04-2', 0, 'D2-007-04-2', 0, 1, 2, 2, 7, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-05-1', 0, 'D2-007-05-1', 0, 1, 2, 2, 7, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-05-2', 0, 'D2-007-05-2', 0, 1, 2, 2, 7, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-06-1', 0, 'D2-007-06-1', 0, 1, 2, 2, 7, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-06-2', 0, 'D2-007-06-2', 0, 1, 2, 2, 7, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-07-1', 0, 'D2-007-07-1', 0, 1, 2, 2, 7, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-07-2', 0, 'D2-007-07-2', 0, 1, 2, 2, 7, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-08-1', 0, 'D2-007-08-1', 0, 1, 2, 2, 7, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-08-2', 0, 'D2-007-08-2', 0, 1, 2, 2, 7, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-09-1', 0, 'D2-007-09-1', 0, 1, 2, 2, 7, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-09-2', 0, 'D2-007-09-2', 0, 1, 2, 2, 7, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-10-1', 0, 'D2-007-10-1', 0, 1, 2, 2, 7, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-10-2', 0, 'D2-007-10-2', 0, 1, 2, 2, 7, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-11-1', 0, 'D2-007-11-1', 0, 1, 2, 2, 7, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-11-2', 0, 'D2-007-11-2', 0, 1, 2, 2, 7, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-12-1', 0, 'D2-007-12-1', 0, 1, 2, 2, 7, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-12-2', 0, 'D2-007-12-2', 0, 1, 2, 2, 7, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-13-1', 0, 'D2-007-13-1', 0, 1, 2, 2, 7, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-13-2', 0, 'D2-007-13-2', 0, 1, 2, 2, 7, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-14-1', 0, 'D2-007-14-1', 0, 1, 2, 2, 7, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-14-2', 0, 'D2-007-14-2', 0, 1, 2, 2, 7, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-15-1', 0, 'D2-007-15-1', 0, 1, 2, 2, 7, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-007-15-2', 0, 'D2-007-15-2', 0, 1, 2, 2, 7, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-01-1', 0, 'D2-008-01-1', 0, 1, 2, 2, 8, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-01-2', 0, 'D2-008-01-2', 0, 1, 2, 2, 8, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-02-1', 0, 'D2-008-02-1', 0, 1, 2, 2, 8, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-02-2', 0, 'D2-008-02-2', 0, 1, 2, 2, 8, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-03-1', 0, 'D2-008-03-1', 0, 1, 2, 2, 8, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-03-2', 0, 'D2-008-03-2', 0, 1, 2, 2, 8, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-04-1', 0, 'D2-008-04-1', 0, 1, 2, 2, 8, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-04-2', 0, 'D2-008-04-2', 0, 1, 2, 2, 8, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-05-1', 0, 'D2-008-05-1', 0, 1, 2, 2, 8, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-05-2', 0, 'D2-008-05-2', 0, 1, 2, 2, 8, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-06-1', 0, 'D2-008-06-1', 0, 1, 2, 2, 8, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-06-2', 0, 'D2-008-06-2', 0, 1, 2, 2, 8, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-07-1', 0, 'D2-008-07-1', 0, 1, 2, 2, 8, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-07-2', 0, 'D2-008-07-2', 0, 1, 2, 2, 8, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-08-1', 0, 'D2-008-08-1', 0, 1, 2, 2, 8, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-08-2', 0, 'D2-008-08-2', 0, 1, 2, 2, 8, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-09-1', 0, 'D2-008-09-1', 0, 1, 2, 2, 8, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-09-2', 0, 'D2-008-09-2', 0, 1, 2, 2, 8, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-10-1', 0, 'D2-008-10-1', 0, 1, 2, 2, 8, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-10-2', 0, 'D2-008-10-2', 0, 1, 2, 2, 8, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-11-1', 0, 'D2-008-11-1', 0, 1, 2, 2, 8, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-11-2', 0, 'D2-008-11-2', 0, 1, 2, 2, 8, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-12-1', 0, 'D2-008-12-1', 0, 1, 2, 2, 8, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-12-2', 0, 'D2-008-12-2', 0, 1, 2, 2, 8, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-13-1', 0, 'D2-008-13-1', 0, 1, 2, 2, 8, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-13-2', 0, 'D2-008-13-2', 0, 1, 2, 2, 8, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-14-1', 0, 'D2-008-14-1', 0, 1, 2, 2, 8, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-14-2', 0, 'D2-008-14-2', 0, 1, 2, 2, 8, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-15-1', 0, 'D2-008-15-1', 0, 1, 2, 2, 8, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-008-15-2', 0, 'D2-008-15-2', 0, 1, 2, 2, 8, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-01-1', 0, 'D2-009-01-1', 0, 1, 2, 2, 9, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-01-2', 0, 'D2-009-01-2', 0, 1, 2, 2, 9, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-02-1', 0, 'D2-009-02-1', 0, 1, 2, 2, 9, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-02-2', 0, 'D2-009-02-2', 0, 1, 2, 2, 9, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-03-1', 0, 'D2-009-03-1', 0, 1, 2, 2, 9, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-03-2', 0, 'D2-009-03-2', 0, 1, 2, 2, 9, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-04-1', 0, 'D2-009-04-1', 0, 1, 2, 2, 9, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-04-2', 0, 'D2-009-04-2', 0, 1, 2, 2, 9, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-05-1', 0, 'D2-009-05-1', 0, 1, 2, 2, 9, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-05-2', 0, 'D2-009-05-2', 0, 1, 2, 2, 9, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-06-1', 0, 'D2-009-06-1', 0, 1, 2, 2, 9, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-06-2', 0, 'D2-009-06-2', 0, 1, 2, 2, 9, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-07-1', 0, 'D2-009-07-1', 0, 1, 2, 2, 9, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-07-2', 0, 'D2-009-07-2', 0, 1, 2, 2, 9, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-08-1', 0, 'D2-009-08-1', 0, 1, 2, 2, 9, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-08-2', 0, 'D2-009-08-2', 0, 1, 2, 2, 9, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-09-1', 0, 'D2-009-09-1', 0, 1, 2, 2, 9, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-09-2', 0, 'D2-009-09-2', 0, 1, 2, 2, 9, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-10-1', 0, 'D2-009-10-1', 0, 1, 2, 2, 9, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-10-2', 0, 'D2-009-10-2', 0, 1, 2, 2, 9, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-11-1', 0, 'D2-009-11-1', 0, 1, 2, 2, 9, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-11-2', 0, 'D2-009-11-2', 0, 1, 2, 2, 9, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-12-1', 0, 'D2-009-12-1', 0, 1, 2, 2, 9, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-12-2', 0, 'D2-009-12-2', 0, 1, 2, 2, 9, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-13-1', 0, 'D2-009-13-1', 0, 1, 2, 2, 9, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-13-2', 0, 'D2-009-13-2', 0, 1, 2, 2, 9, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-14-1', 0, 'D2-009-14-1', 0, 1, 2, 2, 9, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-14-2', 0, 'D2-009-14-2', 0, 1, 2, 2, 9, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-15-1', 0, 'D2-009-15-1', 0, 1, 2, 2, 9, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-009-15-2', 0, 'D2-009-15-2', 0, 1, 2, 2, 9, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-01-1', 0, 'D2-010-01-1', 0, 1, 2, 2, 10, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-01-2', 0, 'D2-010-01-2', 0, 1, 2, 2, 10, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-02-1', 0, 'D2-010-02-1', 0, 1, 2, 2, 10, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-02-2', 0, 'D2-010-02-2', 0, 1, 2, 2, 10, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-03-1', 0, 'D2-010-03-1', 0, 1, 2, 2, 10, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-03-2', 0, 'D2-010-03-2', 0, 1, 2, 2, 10, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-04-1', 0, 'D2-010-04-1', 0, 1, 2, 2, 10, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-04-2', 0, 'D2-010-04-2', 0, 1, 2, 2, 10, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-05-1', 0, 'D2-010-05-1', 0, 1, 2, 2, 10, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-05-2', 0, 'D2-010-05-2', 0, 1, 2, 2, 10, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-06-1', 0, 'D2-010-06-1', 0, 1, 2, 2, 10, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-06-2', 0, 'D2-010-06-2', 0, 1, 2, 2, 10, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-07-1', 0, 'D2-010-07-1', 0, 1, 2, 2, 10, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-07-2', 0, 'D2-010-07-2', 0, 1, 2, 2, 10, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-08-1', 0, 'D2-010-08-1', 0, 1, 2, 2, 10, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-08-2', 0, 'D2-010-08-2', 0, 1, 2, 2, 10, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-09-1', 0, 'D2-010-09-1', 0, 1, 2, 2, 10, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-09-2', 0, 'D2-010-09-2', 0, 1, 2, 2, 10, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-10-1', 0, 'D2-010-10-1', 0, 1, 2, 2, 10, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-10-2', 0, 'D2-010-10-2', 0, 1, 2, 2, 10, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-11-1', 0, 'D2-010-11-1', 0, 1, 2, 2, 10, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-11-2', 0, 'D2-010-11-2', 0, 1, 2, 2, 10, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-12-1', 0, 'D2-010-12-1', 0, 1, 2, 2, 10, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-12-2', 0, 'D2-010-12-2', 0, 1, 2, 2, 10, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-13-1', 0, 'D2-010-13-1', 0, 1, 2, 2, 10, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-13-2', 0, 'D2-010-13-2', 0, 1, 2, 2, 10, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-14-1', 0, 'D2-010-14-1', 0, 1, 2, 2, 10, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-14-2', 0, 'D2-010-14-2', 0, 1, 2, 2, 10, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-15-1', 0, 'D2-010-15-1', 0, 1, 2, 2, 10, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-010-15-2', 0, 'D2-010-15-2', 0, 1, 2, 2, 10, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-01-1', 0, 'D2-011-01-1', 0, 1, 2, 2, 11, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-01-2', 0, 'D2-011-01-2', 0, 1, 2, 2, 11, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-02-1', 0, 'D2-011-02-1', 0, 1, 2, 2, 11, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-02-2', 0, 'D2-011-02-2', 0, 1, 2, 2, 11, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-03-1', 0, 'D2-011-03-1', 0, 1, 2, 2, 11, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-03-2', 0, 'D2-011-03-2', 0, 1, 2, 2, 11, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-04-1', 0, 'D2-011-04-1', 0, 1, 2, 2, 11, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-04-2', 0, 'D2-011-04-2', 0, 1, 2, 2, 11, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-05-1', 0, 'D2-011-05-1', 0, 1, 2, 2, 11, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-05-2', 0, 'D2-011-05-2', 0, 1, 2, 2, 11, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-06-1', 0, 'D2-011-06-1', 0, 1, 2, 2, 11, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-06-2', 0, 'D2-011-06-2', 0, 1, 2, 2, 11, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-07-1', 0, 'D2-011-07-1', 0, 1, 2, 2, 11, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-07-2', 0, 'D2-011-07-2', 0, 1, 2, 2, 11, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-08-1', 0, 'D2-011-08-1', 0, 1, 2, 2, 11, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-08-2', 0, 'D2-011-08-2', 0, 1, 2, 2, 11, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-09-1', 0, 'D2-011-09-1', 0, 1, 2, 2, 11, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-09-2', 0, 'D2-011-09-2', 0, 1, 2, 2, 11, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-10-1', 0, 'D2-011-10-1', 0, 1, 2, 2, 11, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-10-2', 0, 'D2-011-10-2', 0, 1, 2, 2, 11, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-11-1', 0, 'D2-011-11-1', 0, 1, 2, 2, 11, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-11-2', 0, 'D2-011-11-2', 0, 1, 2, 2, 11, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-12-1', 0, 'D2-011-12-1', 0, 1, 2, 2, 11, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-12-2', 0, 'D2-011-12-2', 0, 1, 2, 2, 11, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-13-1', 0, 'D2-011-13-1', 0, 1, 2, 2, 11, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-13-2', 0, 'D2-011-13-2', 0, 1, 2, 2, 11, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-14-1', 0, 'D2-011-14-1', 0, 1, 2, 2, 11, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-14-2', 0, 'D2-011-14-2', 0, 1, 2, 2, 11, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-15-1', 0, 'D2-011-15-1', 0, 1, 2, 2, 11, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-011-15-2', 0, 'D2-011-15-2', 0, 1, 2, 2, 11, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-01-1', 0, 'D2-012-01-1', 0, 1, 2, 2, 12, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-01-2', 0, 'D2-012-01-2', 0, 1, 2, 2, 12, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-02-1', 0, 'D2-012-02-1', 0, 1, 2, 2, 12, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-02-2', 0, 'D2-012-02-2', 0, 1, 2, 2, 12, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-03-1', 0, 'D2-012-03-1', 0, 1, 2, 2, 12, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-03-2', 0, 'D2-012-03-2', 0, 1, 2, 2, 12, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-04-1', 0, 'D2-012-04-1', 0, 1, 2, 2, 12, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-04-2', 0, 'D2-012-04-2', 0, 1, 2, 2, 12, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-05-1', 0, 'D2-012-05-1', 0, 1, 2, 2, 12, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-05-2', 0, 'D2-012-05-2', 0, 1, 2, 2, 12, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-06-1', 0, 'D2-012-06-1', 0, 1, 2, 2, 12, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-06-2', 0, 'D2-012-06-2', 0, 1, 2, 2, 12, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-07-1', 0, 'D2-012-07-1', 0, 1, 2, 2, 12, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-07-2', 0, 'D2-012-07-2', 0, 1, 2, 2, 12, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-08-1', 0, 'D2-012-08-1', 0, 1, 2, 2, 12, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-08-2', 0, 'D2-012-08-2', 0, 1, 2, 2, 12, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-09-1', 0, 'D2-012-09-1', 0, 1, 2, 2, 12, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-09-2', 0, 'D2-012-09-2', 0, 1, 2, 2, 12, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-10-1', 0, 'D2-012-10-1', 0, 1, 2, 2, 12, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-10-2', 0, 'D2-012-10-2', 0, 1, 2, 2, 12, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-11-1', 0, 'D2-012-11-1', 0, 1, 2, 2, 12, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-11-2', 0, 'D2-012-11-2', 0, 1, 2, 2, 12, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-12-1', 0, 'D2-012-12-1', 0, 1, 2, 2, 12, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-12-2', 0, 'D2-012-12-2', 0, 1, 2, 2, 12, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-13-1', 0, 'D2-012-13-1', 0, 1, 2, 2, 12, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-13-2', 0, 'D2-012-13-2', 0, 1, 2, 2, 12, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-14-1', 0, 'D2-012-14-1', 0, 1, 2, 2, 12, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-14-2', 0, 'D2-012-14-2', 0, 1, 2, 2, 12, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-15-1', 0, 'D2-012-15-1', 0, 1, 2, 2, 12, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-012-15-2', 0, 'D2-012-15-2', 0, 1, 2, 2, 12, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-01-1', 0, 'D2-013-01-1', 0, 1, 2, 2, 13, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-01-2', 0, 'D2-013-01-2', 0, 1, 2, 2, 13, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-02-1', 0, 'D2-013-02-1', 0, 1, 2, 2, 13, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-02-2', 0, 'D2-013-02-2', 0, 1, 2, 2, 13, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-03-1', 0, 'D2-013-03-1', 0, 1, 2, 2, 13, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-03-2', 0, 'D2-013-03-2', 0, 1, 2, 2, 13, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-04-1', 0, 'D2-013-04-1', 0, 1, 2, 2, 13, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-04-2', 0, 'D2-013-04-2', 0, 1, 2, 2, 13, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-05-1', 0, 'D2-013-05-1', 0, 1, 2, 2, 13, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-05-2', 0, 'D2-013-05-2', 0, 1, 2, 2, 13, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-06-1', 0, 'D2-013-06-1', 0, 1, 2, 2, 13, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-06-2', 0, 'D2-013-06-2', 0, 1, 2, 2, 13, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-07-1', 0, 'D2-013-07-1', 0, 1, 2, 2, 13, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-07-2', 0, 'D2-013-07-2', 0, 1, 2, 2, 13, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-08-1', 0, 'D2-013-08-1', 0, 1, 2, 2, 13, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-08-2', 0, 'D2-013-08-2', 0, 1, 2, 2, 13, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-09-1', 0, 'D2-013-09-1', 0, 1, 2, 2, 13, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-09-2', 0, 'D2-013-09-2', 0, 1, 2, 2, 13, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-10-1', 0, 'D2-013-10-1', 0, 1, 2, 2, 13, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-10-2', 0, 'D2-013-10-2', 0, 1, 2, 2, 13, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-11-1', 0, 'D2-013-11-1', 0, 1, 2, 2, 13, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-11-2', 0, 'D2-013-11-2', 0, 1, 2, 2, 13, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-12-1', 0, 'D2-013-12-1', 0, 1, 2, 2, 13, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-12-2', 0, 'D2-013-12-2', 0, 1, 2, 2, 13, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-13-1', 0, 'D2-013-13-1', 0, 1, 2, 2, 13, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-13-2', 0, 'D2-013-13-2', 0, 1, 2, 2, 13, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-14-1', 0, 'D2-013-14-1', 0, 1, 2, 2, 13, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-14-2', 0, 'D2-013-14-2', 0, 1, 2, 2, 13, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-15-1', 0, 'D2-013-15-1', 0, 1, 2, 2, 13, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-013-15-2', 0, 'D2-013-15-2', 0, 1, 2, 2, 13, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-01-1', 0, 'D2-014-01-1', 0, 1, 2, 2, 14, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-01-2', 0, 'D2-014-01-2', 0, 1, 2, 2, 14, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-02-1', 0, 'D2-014-02-1', 0, 1, 2, 2, 14, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-02-2', 0, 'D2-014-02-2', 0, 1, 2, 2, 14, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-03-1', 0, 'D2-014-03-1', 0, 1, 2, 2, 14, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-03-2', 0, 'D2-014-03-2', 0, 1, 2, 2, 14, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-04-1', 0, 'D2-014-04-1', 0, 1, 2, 2, 14, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-04-2', 0, 'D2-014-04-2', 0, 1, 2, 2, 14, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-05-1', 0, 'D2-014-05-1', 0, 1, 2, 2, 14, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-05-2', 0, 'D2-014-05-2', 0, 1, 2, 2, 14, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-06-1', 0, 'D2-014-06-1', 0, 1, 2, 2, 14, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-06-2', 0, 'D2-014-06-2', 0, 1, 2, 2, 14, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-07-1', 0, 'D2-014-07-1', 0, 1, 2, 2, 14, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-07-2', 0, 'D2-014-07-2', 0, 1, 2, 2, 14, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-08-1', 0, 'D2-014-08-1', 0, 1, 2, 2, 14, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-08-2', 0, 'D2-014-08-2', 0, 1, 2, 2, 14, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-09-1', 0, 'D2-014-09-1', 0, 1, 2, 2, 14, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-09-2', 0, 'D2-014-09-2', 0, 1, 2, 2, 14, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-10-1', 0, 'D2-014-10-1', 0, 1, 2, 2, 14, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-10-2', 0, 'D2-014-10-2', 0, 1, 2, 2, 14, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-11-1', 0, 'D2-014-11-1', 0, 1, 2, 2, 14, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-11-2', 0, 'D2-014-11-2', 0, 1, 2, 2, 14, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-12-1', 0, 'D2-014-12-1', 0, 1, 2, 2, 14, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-12-2', 0, 'D2-014-12-2', 0, 1, 2, 2, 14, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-13-1', 0, 'D2-014-13-1', 0, 1, 2, 2, 14, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-13-2', 0, 'D2-014-13-2', 0, 1, 2, 2, 14, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-14-1', 0, 'D2-014-14-1', 0, 1, 2, 2, 14, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-14-2', 0, 'D2-014-14-2', 0, 1, 2, 2, 14, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-15-1', 0, 'D2-014-15-1', 0, 1, 2, 2, 14, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-014-15-2', 0, 'D2-014-15-2', 0, 1, 2, 2, 14, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-01-1', 0, 'D2-015-01-1', 0, 1, 2, 2, 15, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-01-2', 0, 'D2-015-01-2', 0, 1, 2, 2, 15, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-02-1', 0, 'D2-015-02-1', 0, 1, 2, 2, 15, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-02-2', 0, 'D2-015-02-2', 0, 1, 2, 2, 15, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-03-1', 0, 'D2-015-03-1', 0, 1, 2, 2, 15, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-03-2', 0, 'D2-015-03-2', 0, 1, 2, 2, 15, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-04-1', 0, 'D2-015-04-1', 0, 1, 2, 2, 15, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-04-2', 0, 'D2-015-04-2', 0, 1, 2, 2, 15, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-05-1', 0, 'D2-015-05-1', 0, 1, 2, 2, 15, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-05-2', 0, 'D2-015-05-2', 0, 1, 2, 2, 15, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-06-1', 0, 'D2-015-06-1', 0, 1, 2, 2, 15, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-06-2', 0, 'D2-015-06-2', 0, 1, 2, 2, 15, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-07-1', 0, 'D2-015-07-1', 0, 1, 2, 2, 15, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-07-2', 0, 'D2-015-07-2', 0, 1, 2, 2, 15, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-08-1', 0, 'D2-015-08-1', 0, 1, 2, 2, 15, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-08-2', 0, 'D2-015-08-2', 0, 1, 2, 2, 15, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-09-1', 0, 'D2-015-09-1', 0, 1, 2, 2, 15, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-09-2', 0, 'D2-015-09-2', 0, 1, 2, 2, 15, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-10-1', 0, 'D2-015-10-1', 0, 1, 2, 2, 15, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-10-2', 0, 'D2-015-10-2', 0, 1, 2, 2, 15, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-11-1', 0, 'D2-015-11-1', 0, 1, 2, 2, 15, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-11-2', 0, 'D2-015-11-2', 0, 1, 2, 2, 15, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-12-1', 0, 'D2-015-12-1', 0, 1, 2, 2, 15, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-12-2', 0, 'D2-015-12-2', 0, 1, 2, 2, 15, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-13-1', 0, 'D2-015-13-1', 0, 1, 2, 2, 15, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-13-2', 0, 'D2-015-13-2', 0, 1, 2, 2, 15, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-14-1', 0, 'D2-015-14-1', 0, 1, 2, 2, 15, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-14-2', 0, 'D2-015-14-2', 0, 1, 2, 2, 15, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-15-1', 0, 'D2-015-15-1', 0, 1, 2, 2, 15, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-015-15-2', 0, 'D2-015-15-2', 0, 1, 2, 2, 15, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-01-1', 0, 'D2-016-01-1', 0, 1, 2, 2, 16, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-01-2', 0, 'D2-016-01-2', 0, 1, 2, 2, 16, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-02-1', 0, 'D2-016-02-1', 0, 1, 2, 2, 16, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-02-2', 0, 'D2-016-02-2', 0, 1, 2, 2, 16, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-03-1', 0, 'D2-016-03-1', 0, 1, 2, 2, 16, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-03-2', 0, 'D2-016-03-2', 0, 1, 2, 2, 16, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-04-1', 0, 'D2-016-04-1', 0, 1, 2, 2, 16, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-04-2', 0, 'D2-016-04-2', 0, 1, 2, 2, 16, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-05-1', 0, 'D2-016-05-1', 0, 1, 2, 2, 16, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-05-2', 0, 'D2-016-05-2', 0, 1, 2, 2, 16, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-06-1', 0, 'D2-016-06-1', 0, 1, 2, 2, 16, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-06-2', 0, 'D2-016-06-2', 0, 1, 2, 2, 16, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-07-1', 0, 'D2-016-07-1', 0, 1, 2, 2, 16, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-07-2', 0, 'D2-016-07-2', 0, 1, 2, 2, 16, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-08-1', 0, 'D2-016-08-1', 0, 1, 2, 2, 16, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-08-2', 0, 'D2-016-08-2', 0, 1, 2, 2, 16, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-09-1', 0, 'D2-016-09-1', 0, 1, 2, 2, 16, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-09-2', 0, 'D2-016-09-2', 0, 1, 2, 2, 16, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-10-1', 0, 'D2-016-10-1', 0, 1, 2, 2, 16, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-10-2', 0, 'D2-016-10-2', 0, 1, 2, 2, 16, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-11-1', 0, 'D2-016-11-1', 0, 1, 2, 2, 16, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-11-2', 0, 'D2-016-11-2', 0, 1, 2, 2, 16, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-12-1', 0, 'D2-016-12-1', 0, 1, 2, 2, 16, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-12-2', 0, 'D2-016-12-2', 0, 1, 2, 2, 16, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-13-1', 0, 'D2-016-13-1', 0, 1, 2, 2, 16, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-13-2', 0, 'D2-016-13-2', 0, 1, 2, 2, 16, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-14-1', 0, 'D2-016-14-1', 0, 1, 2, 2, 16, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-14-2', 0, 'D2-016-14-2', 0, 1, 2, 2, 16, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-15-1', 0, 'D2-016-15-1', 0, 1, 2, 2, 16, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-016-15-2', 0, 'D2-016-15-2', 0, 1, 2, 2, 16, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-01-1', 0, 'D2-017-01-1', 0, 1, 2, 2, 17, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-01-2', 0, 'D2-017-01-2', 0, 1, 2, 2, 17, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-02-1', 0, 'D2-017-02-1', 0, 1, 2, 2, 17, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-02-2', 0, 'D2-017-02-2', 0, 1, 2, 2, 17, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-03-1', 0, 'D2-017-03-1', 0, 1, 2, 2, 17, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-03-2', 0, 'D2-017-03-2', 0, 1, 2, 2, 17, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-04-1', 0, 'D2-017-04-1', 0, 1, 2, 2, 17, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-04-2', 0, 'D2-017-04-2', 0, 1, 2, 2, 17, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-05-1', 0, 'D2-017-05-1', 0, 1, 2, 2, 17, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-05-2', 0, 'D2-017-05-2', 0, 1, 2, 2, 17, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-06-1', 0, 'D2-017-06-1', 0, 1, 2, 2, 17, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-06-2', 0, 'D2-017-06-2', 0, 1, 2, 2, 17, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-07-1', 0, 'D2-017-07-1', 0, 1, 2, 2, 17, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-07-2', 0, 'D2-017-07-2', 0, 1, 2, 2, 17, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-08-1', 0, 'D2-017-08-1', 0, 1, 2, 2, 17, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-08-2', 0, 'D2-017-08-2', 0, 1, 2, 2, 17, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-09-1', 0, 'D2-017-09-1', 0, 1, 2, 2, 17, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-09-2', 0, 'D2-017-09-2', 0, 1, 2, 2, 17, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-10-1', 0, 'D2-017-10-1', 0, 1, 2, 2, 17, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-10-2', 0, 'D2-017-10-2', 0, 1, 2, 2, 17, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-11-1', 0, 'D2-017-11-1', 0, 1, 2, 2, 17, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-11-2', 0, 'D2-017-11-2', 0, 1, 2, 2, 17, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-12-1', 0, 'D2-017-12-1', 0, 1, 2, 2, 17, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-12-2', 0, 'D2-017-12-2', 0, 1, 2, 2, 17, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-13-1', 0, 'D2-017-13-1', 0, 1, 2, 2, 17, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-13-2', 0, 'D2-017-13-2', 0, 1, 2, 2, 17, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-14-1', 0, 'D2-017-14-1', 0, 1, 2, 2, 17, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-14-2', 0, 'D2-017-14-2', 0, 1, 2, 2, 17, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-15-1', 0, 'D2-017-15-1', 0, 1, 2, 2, 17, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-017-15-2', 0, 'D2-017-15-2', 0, 1, 2, 2, 17, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-01-1', 0, 'D2-018-01-1', 0, 1, 2, 2, 18, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-01-2', 0, 'D2-018-01-2', 0, 1, 2, 2, 18, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-02-1', 0, 'D2-018-02-1', 0, 1, 2, 2, 18, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-02-2', 0, 'D2-018-02-2', 0, 1, 2, 2, 18, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-03-1', 0, 'D2-018-03-1', 0, 1, 2, 2, 18, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-03-2', 0, 'D2-018-03-2', 0, 1, 2, 2, 18, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-04-1', 0, 'D2-018-04-1', 0, 1, 2, 2, 18, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-04-2', 0, 'D2-018-04-2', 0, 1, 2, 2, 18, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-05-1', 0, 'D2-018-05-1', 0, 1, 2, 2, 18, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-05-2', 0, 'D2-018-05-2', 0, 1, 2, 2, 18, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-06-1', 0, 'D2-018-06-1', 0, 1, 2, 2, 18, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-06-2', 0, 'D2-018-06-2', 0, 1, 2, 2, 18, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-07-1', 0, 'D2-018-07-1', 0, 1, 2, 2, 18, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-07-2', 0, 'D2-018-07-2', 0, 1, 2, 2, 18, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-08-1', 0, 'D2-018-08-1', 0, 1, 2, 2, 18, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-08-2', 0, 'D2-018-08-2', 0, 1, 2, 2, 18, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-09-1', 0, 'D2-018-09-1', 0, 1, 2, 2, 18, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-09-2', 0, 'D2-018-09-2', 0, 1, 2, 2, 18, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-10-1', 0, 'D2-018-10-1', 0, 1, 2, 2, 18, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-10-2', 0, 'D2-018-10-2', 0, 1, 2, 2, 18, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-11-1', 0, 'D2-018-11-1', 0, 1, 2, 2, 18, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-11-2', 0, 'D2-018-11-2', 0, 1, 2, 2, 18, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-12-1', 0, 'D2-018-12-1', 0, 1, 2, 2, 18, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-12-2', 0, 'D2-018-12-2', 0, 1, 2, 2, 18, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-13-1', 0, 'D2-018-13-1', 0, 1, 2, 2, 18, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-13-2', 0, 'D2-018-13-2', 0, 1, 2, 2, 18, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-14-1', 0, 'D2-018-14-1', 0, 1, 2, 2, 18, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-14-2', 0, 'D2-018-14-2', 0, 1, 2, 2, 18, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-15-1', 0, 'D2-018-15-1', 0, 1, 2, 2, 18, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-018-15-2', 0, 'D2-018-15-2', 0, 1, 2, 2, 18, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-01-1', 0, 'D2-019-01-1', 0, 1, 2, 2, 19, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-01-2', 0, 'D2-019-01-2', 0, 1, 2, 2, 19, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-02-1', 0, 'D2-019-02-1', 0, 1, 2, 2, 19, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-02-2', 0, 'D2-019-02-2', 0, 1, 2, 2, 19, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-03-1', 0, 'D2-019-03-1', 0, 1, 2, 2, 19, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-03-2', 0, 'D2-019-03-2', 0, 1, 2, 2, 19, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-04-1', 0, 'D2-019-04-1', 0, 1, 2, 2, 19, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-04-2', 0, 'D2-019-04-2', 0, 1, 2, 2, 19, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-05-1', 0, 'D2-019-05-1', 0, 1, 2, 2, 19, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-05-2', 0, 'D2-019-05-2', 0, 1, 2, 2, 19, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-06-1', 0, 'D2-019-06-1', 0, 1, 2, 2, 19, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-06-2', 0, 'D2-019-06-2', 0, 1, 2, 2, 19, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-07-1', 0, 'D2-019-07-1', 0, 1, 2, 2, 19, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-07-2', 0, 'D2-019-07-2', 0, 1, 2, 2, 19, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-08-1', 0, 'D2-019-08-1', 0, 1, 2, 2, 19, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-08-2', 0, 'D2-019-08-2', 0, 1, 2, 2, 19, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-09-1', 0, 'D2-019-09-1', 0, 1, 2, 2, 19, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-09-2', 0, 'D2-019-09-2', 0, 1, 2, 2, 19, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-10-1', 0, 'D2-019-10-1', 0, 1, 2, 2, 19, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-10-2', 0, 'D2-019-10-2', 0, 1, 2, 2, 19, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-11-1', 0, 'D2-019-11-1', 0, 1, 2, 2, 19, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-11-2', 0, 'D2-019-11-2', 0, 1, 2, 2, 19, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-12-1', 0, 'D2-019-12-1', 0, 1, 2, 2, 19, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-12-2', 0, 'D2-019-12-2', 0, 1, 2, 2, 19, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-13-1', 0, 'D2-019-13-1', 0, 1, 2, 2, 19, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-13-2', 0, 'D2-019-13-2', 0, 1, 2, 2, 19, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-14-1', 0, 'D2-019-14-1', 0, 1, 2, 2, 19, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-14-2', 0, 'D2-019-14-2', 0, 1, 2, 2, 19, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-15-1', 0, 'D2-019-15-1', 0, 1, 2, 2, 19, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-019-15-2', 0, 'D2-019-15-2', 0, 1, 2, 2, 19, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-01-1', 0, 'D2-020-01-1', 0, 1, 2, 2, 20, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-01-2', 0, 'D2-020-01-2', 0, 1, 2, 2, 20, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-02-1', 0, 'D2-020-02-1', 0, 1, 2, 2, 20, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-02-2', 0, 'D2-020-02-2', 0, 1, 2, 2, 20, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-03-1', 0, 'D2-020-03-1', 0, 1, 2, 2, 20, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-03-2', 0, 'D2-020-03-2', 0, 1, 2, 2, 20, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-04-1', 0, 'D2-020-04-1', 0, 1, 2, 2, 20, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-04-2', 0, 'D2-020-04-2', 0, 1, 2, 2, 20, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-05-1', 0, 'D2-020-05-1', 0, 1, 2, 2, 20, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-05-2', 0, 'D2-020-05-2', 0, 1, 2, 2, 20, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-06-1', 0, 'D2-020-06-1', 0, 1, 2, 2, 20, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-06-2', 0, 'D2-020-06-2', 0, 1, 2, 2, 20, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-07-1', 0, 'D2-020-07-1', 0, 1, 2, 2, 20, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-07-2', 0, 'D2-020-07-2', 0, 1, 2, 2, 20, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-08-1', 0, 'D2-020-08-1', 0, 1, 2, 2, 20, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-08-2', 0, 'D2-020-08-2', 0, 1, 2, 2, 20, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-09-1', 0, 'D2-020-09-1', 0, 1, 2, 2, 20, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-09-2', 0, 'D2-020-09-2', 0, 1, 2, 2, 20, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-10-1', 0, 'D2-020-10-1', 0, 1, 2, 2, 20, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-10-2', 0, 'D2-020-10-2', 0, 1, 2, 2, 20, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-11-1', 0, 'D2-020-11-1', 0, 1, 2, 2, 20, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-11-2', 0, 'D2-020-11-2', 0, 1, 2, 2, 20, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-12-1', 0, 'D2-020-12-1', 0, 1, 2, 2, 20, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-12-2', 0, 'D2-020-12-2', 0, 1, 2, 2, 20, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-13-1', 0, 'D2-020-13-1', 0, 1, 2, 2, 20, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-13-2', 0, 'D2-020-13-2', 0, 1, 2, 2, 20, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-14-1', 0, 'D2-020-14-1', 0, 1, 2, 2, 20, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-14-2', 0, 'D2-020-14-2', 0, 1, 2, 2, 20, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-15-1', 0, 'D2-020-15-1', 0, 1, 2, 2, 20, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-020-15-2', 0, 'D2-020-15-2', 0, 1, 2, 2, 20, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-01-1', 0, 'D2-021-01-1', 0, 1, 2, 2, 21, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-01-2', 0, 'D2-021-01-2', 0, 1, 2, 2, 21, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-02-1', 0, 'D2-021-02-1', 0, 1, 2, 2, 21, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-02-2', 0, 'D2-021-02-2', 0, 1, 2, 2, 21, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-03-1', 0, 'D2-021-03-1', 0, 1, 2, 2, 21, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-03-2', 0, 'D2-021-03-2', 0, 1, 2, 2, 21, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-04-1', 0, 'D2-021-04-1', 0, 1, 2, 2, 21, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-04-2', 0, 'D2-021-04-2', 0, 1, 2, 2, 21, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-05-1', 0, 'D2-021-05-1', 0, 1, 2, 2, 21, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-05-2', 0, 'D2-021-05-2', 0, 1, 2, 2, 21, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-06-1', 0, 'D2-021-06-1', 0, 1, 2, 2, 21, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-06-2', 0, 'D2-021-06-2', 0, 1, 2, 2, 21, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-07-1', 0, 'D2-021-07-1', 0, 1, 2, 2, 21, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-07-2', 0, 'D2-021-07-2', 0, 1, 2, 2, 21, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-08-1', 0, 'D2-021-08-1', 0, 1, 2, 2, 21, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-08-2', 0, 'D2-021-08-2', 0, 1, 2, 2, 21, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-09-1', 0, 'D2-021-09-1', 0, 1, 2, 2, 21, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-09-2', 0, 'D2-021-09-2', 0, 1, 2, 2, 21, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-10-1', 0, 'D2-021-10-1', 0, 1, 2, 2, 21, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-10-2', 0, 'D2-021-10-2', 0, 1, 2, 2, 21, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-11-1', 0, 'D2-021-11-1', 0, 1, 2, 2, 21, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-11-2', 0, 'D2-021-11-2', 0, 1, 2, 2, 21, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-12-1', 0, 'D2-021-12-1', 0, 1, 2, 2, 21, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-12-2', 0, 'D2-021-12-2', 0, 1, 2, 2, 21, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-13-1', 0, 'D2-021-13-1', 0, 1, 2, 2, 21, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-13-2', 0, 'D2-021-13-2', 0, 1, 2, 2, 21, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-14-1', 0, 'D2-021-14-1', 0, 1, 2, 2, 21, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-14-2', 0, 'D2-021-14-2', 0, 1, 2, 2, 21, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-15-1', 0, 'D2-021-15-1', 0, 1, 2, 2, 21, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-021-15-2', 0, 'D2-021-15-2', 0, 1, 2, 2, 21, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-01-1', 0, 'D2-022-01-1', 0, 1, 2, 2, 22, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-01-2', 0, 'D2-022-01-2', 0, 1, 2, 2, 22, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-02-1', 0, 'D2-022-02-1', 0, 1, 2, 2, 22, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-02-2', 0, 'D2-022-02-2', 0, 1, 2, 2, 22, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-03-1', 0, 'D2-022-03-1', 0, 1, 2, 2, 22, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-03-2', 0, 'D2-022-03-2', 0, 1, 2, 2, 22, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-04-1', 0, 'D2-022-04-1', 0, 1, 2, 2, 22, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-04-2', 0, 'D2-022-04-2', 0, 1, 2, 2, 22, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-05-1', 0, 'D2-022-05-1', 0, 1, 2, 2, 22, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-05-2', 0, 'D2-022-05-2', 0, 1, 2, 2, 22, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-06-1', 0, 'D2-022-06-1', 0, 1, 2, 2, 22, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-06-2', 0, 'D2-022-06-2', 0, 1, 2, 2, 22, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-07-1', 0, 'D2-022-07-1', 0, 1, 2, 2, 22, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-07-2', 0, 'D2-022-07-2', 0, 1, 2, 2, 22, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-08-1', 0, 'D2-022-08-1', 0, 1, 2, 2, 22, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-08-2', 0, 'D2-022-08-2', 0, 1, 2, 2, 22, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-09-1', 0, 'D2-022-09-1', 0, 1, 2, 2, 22, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-09-2', 0, 'D2-022-09-2', 0, 1, 2, 2, 22, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-10-1', 0, 'D2-022-10-1', 0, 1, 2, 2, 22, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-10-2', 0, 'D2-022-10-2', 0, 1, 2, 2, 22, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-11-1', 0, 'D2-022-11-1', 0, 1, 2, 2, 22, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-11-2', 0, 'D2-022-11-2', 0, 1, 2, 2, 22, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-12-1', 0, 'D2-022-12-1', 0, 1, 2, 2, 22, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-12-2', 0, 'D2-022-12-2', 0, 1, 2, 2, 22, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-13-1', 0, 'D2-022-13-1', 0, 1, 2, 2, 22, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-13-2', 0, 'D2-022-13-2', 0, 1, 2, 2, 22, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-14-1', 0, 'D2-022-14-1', 0, 1, 2, 2, 22, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-14-2', 0, 'D2-022-14-2', 0, 1, 2, 2, 22, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-15-1', 0, 'D2-022-15-1', 0, 1, 2, 2, 22, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-022-15-2', 0, 'D2-022-15-2', 0, 1, 2, 2, 22, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-01-1', 0, 'D2-023-01-1', 0, 1, 2, 2, 23, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-01-2', 0, 'D2-023-01-2', 0, 1, 2, 2, 23, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-02-1', 0, 'D2-023-02-1', 0, 1, 2, 2, 23, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-02-2', 0, 'D2-023-02-2', 0, 1, 2, 2, 23, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-03-1', 0, 'D2-023-03-1', 0, 1, 2, 2, 23, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-03-2', 0, 'D2-023-03-2', 0, 1, 2, 2, 23, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-04-1', 0, 'D2-023-04-1', 0, 1, 2, 2, 23, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-04-2', 0, 'D2-023-04-2', 0, 1, 2, 2, 23, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-05-1', 0, 'D2-023-05-1', 0, 1, 2, 2, 23, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-05-2', 0, 'D2-023-05-2', 0, 1, 2, 2, 23, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-06-1', 0, 'D2-023-06-1', 0, 1, 2, 2, 23, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-06-2', 0, 'D2-023-06-2', 0, 1, 2, 2, 23, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-07-1', 0, 'D2-023-07-1', 0, 1, 2, 2, 23, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-07-2', 0, 'D2-023-07-2', 0, 1, 2, 2, 23, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-08-1', 0, 'D2-023-08-1', 0, 1, 2, 2, 23, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-08-2', 0, 'D2-023-08-2', 0, 1, 2, 2, 23, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-09-1', 0, 'D2-023-09-1', 0, 1, 2, 2, 23, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-09-2', 0, 'D2-023-09-2', 0, 1, 2, 2, 23, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-10-1', 0, 'D2-023-10-1', 0, 1, 2, 2, 23, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-10-2', 0, 'D2-023-10-2', 0, 1, 2, 2, 23, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-11-1', 0, 'D2-023-11-1', 0, 1, 2, 2, 23, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-11-2', 0, 'D2-023-11-2', 0, 1, 2, 2, 23, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-12-1', 0, 'D2-023-12-1', 0, 1, 2, 2, 23, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-12-2', 0, 'D2-023-12-2', 0, 1, 2, 2, 23, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-13-1', 0, 'D2-023-13-1', 0, 1, 2, 2, 23, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-13-2', 0, 'D2-023-13-2', 0, 1, 2, 2, 23, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-14-1', 0, 'D2-023-14-1', 0, 1, 2, 2, 23, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-14-2', 0, 'D2-023-14-2', 0, 1, 2, 2, 23, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-15-1', 0, 'D2-023-15-1', 0, 1, 2, 2, 23, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-023-15-2', 0, 'D2-023-15-2', 0, 1, 2, 2, 23, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-01-1', 0, 'D2-024-01-1', 0, 1, 2, 2, 24, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-01-2', 0, 'D2-024-01-2', 0, 1, 2, 2, 24, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-02-1', 0, 'D2-024-02-1', 0, 1, 2, 2, 24, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-02-2', 0, 'D2-024-02-2', 0, 1, 2, 2, 24, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-03-1', 0, 'D2-024-03-1', 0, 1, 2, 2, 24, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-03-2', 0, 'D2-024-03-2', 0, 1, 2, 2, 24, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-04-1', 0, 'D2-024-04-1', 0, 1, 2, 2, 24, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-04-2', 0, 'D2-024-04-2', 0, 1, 2, 2, 24, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-05-1', 0, 'D2-024-05-1', 0, 1, 2, 2, 24, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-05-2', 0, 'D2-024-05-2', 0, 1, 2, 2, 24, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-06-1', 0, 'D2-024-06-1', 0, 1, 2, 2, 24, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-06-2', 0, 'D2-024-06-2', 0, 1, 2, 2, 24, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-07-1', 0, 'D2-024-07-1', 0, 1, 2, 2, 24, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-07-2', 0, 'D2-024-07-2', 0, 1, 2, 2, 24, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-08-1', 0, 'D2-024-08-1', 0, 1, 2, 2, 24, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-08-2', 0, 'D2-024-08-2', 0, 1, 2, 2, 24, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-09-1', 0, 'D2-024-09-1', 0, 1, 2, 2, 24, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-09-2', 0, 'D2-024-09-2', 0, 1, 2, 2, 24, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-10-1', 0, 'D2-024-10-1', 0, 1, 2, 2, 24, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-10-2', 0, 'D2-024-10-2', 0, 1, 2, 2, 24, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-11-1', 0, 'D2-024-11-1', 0, 1, 2, 2, 24, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-11-2', 0, 'D2-024-11-2', 0, 1, 2, 2, 24, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-12-1', 0, 'D2-024-12-1', 0, 1, 2, 2, 24, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-12-2', 0, 'D2-024-12-2', 0, 1, 2, 2, 24, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-13-1', 0, 'D2-024-13-1', 0, 1, 2, 2, 24, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-13-2', 0, 'D2-024-13-2', 0, 1, 2, 2, 24, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-14-1', 0, 'D2-024-14-1', 0, 1, 2, 2, 24, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-14-2', 0, 'D2-024-14-2', 0, 1, 2, 2, 24, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-15-1', 0, 'D2-024-15-1', 0, 1, 2, 2, 24, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-024-15-2', 0, 'D2-024-15-2', 0, 1, 2, 2, 24, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-01-1', 0, 'D2-025-01-1', 0, 1, 2, 2, 25, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-01-2', 0, 'D2-025-01-2', 0, 1, 2, 2, 25, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-02-1', 0, 'D2-025-02-1', 0, 1, 2, 2, 25, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-02-2', 0, 'D2-025-02-2', 0, 1, 2, 2, 25, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-03-1', 0, 'D2-025-03-1', 0, 1, 2, 2, 25, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-03-2', 0, 'D2-025-03-2', 0, 1, 2, 2, 25, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-04-1', 0, 'D2-025-04-1', 0, 1, 2, 2, 25, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-04-2', 0, 'D2-025-04-2', 0, 1, 2, 2, 25, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-05-1', 0, 'D2-025-05-1', 0, 1, 2, 2, 25, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-05-2', 0, 'D2-025-05-2', 0, 1, 2, 2, 25, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-06-1', 0, 'D2-025-06-1', 0, 1, 2, 2, 25, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-06-2', 0, 'D2-025-06-2', 0, 1, 2, 2, 25, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-07-1', 0, 'D2-025-07-1', 0, 1, 2, 2, 25, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-07-2', 0, 'D2-025-07-2', 0, 1, 2, 2, 25, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-08-1', 0, 'D2-025-08-1', 0, 1, 2, 2, 25, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-08-2', 0, 'D2-025-08-2', 0, 1, 2, 2, 25, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-09-1', 0, 'D2-025-09-1', 0, 1, 2, 2, 25, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-09-2', 0, 'D2-025-09-2', 0, 1, 2, 2, 25, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-10-1', 0, 'D2-025-10-1', 0, 1, 2, 2, 25, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-10-2', 0, 'D2-025-10-2', 0, 1, 2, 2, 25, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-11-1', 0, 'D2-025-11-1', 0, 1, 2, 2, 25, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-11-2', 0, 'D2-025-11-2', 0, 1, 2, 2, 25, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-12-1', 0, 'D2-025-12-1', 0, 1, 2, 2, 25, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-12-2', 0, 'D2-025-12-2', 0, 1, 2, 2, 25, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-13-1', 0, 'D2-025-13-1', 0, 1, 2, 2, 25, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-13-2', 0, 'D2-025-13-2', 0, 1, 2, 2, 25, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-14-1', 0, 'D2-025-14-1', 0, 1, 2, 2, 25, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-14-2', 0, 'D2-025-14-2', 0, 1, 2, 2, 25, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-15-1', 0, 'D2-025-15-1', 0, 1, 2, 2, 25, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-025-15-2', 0, 'D2-025-15-2', 0, 1, 2, 2, 25, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-01-1', 0, 'D2-026-01-1', 0, 1, 2, 2, 26, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-01-2', 0, 'D2-026-01-2', 0, 1, 2, 2, 26, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-02-1', 0, 'D2-026-02-1', 0, 1, 2, 2, 26, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-02-2', 0, 'D2-026-02-2', 0, 1, 2, 2, 26, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-03-1', 0, 'D2-026-03-1', 0, 1, 2, 2, 26, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-03-2', 0, 'D2-026-03-2', 0, 1, 2, 2, 26, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-04-1', 0, 'D2-026-04-1', 0, 1, 2, 2, 26, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-04-2', 0, 'D2-026-04-2', 0, 1, 2, 2, 26, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-05-1', 0, 'D2-026-05-1', 0, 1, 2, 2, 26, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-05-2', 0, 'D2-026-05-2', 0, 1, 2, 2, 26, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-06-1', 0, 'D2-026-06-1', 0, 1, 2, 2, 26, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-06-2', 0, 'D2-026-06-2', 0, 1, 2, 2, 26, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-07-1', 0, 'D2-026-07-1', 0, 1, 2, 2, 26, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-07-2', 0, 'D2-026-07-2', 0, 1, 2, 2, 26, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-08-1', 0, 'D2-026-08-1', 0, 1, 2, 2, 26, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-08-2', 0, 'D2-026-08-2', 0, 1, 2, 2, 26, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-09-1', 0, 'D2-026-09-1', 0, 1, 2, 2, 26, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-09-2', 0, 'D2-026-09-2', 0, 1, 2, 2, 26, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-10-1', 0, 'D2-026-10-1', 0, 1, 2, 2, 26, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-10-2', 0, 'D2-026-10-2', 0, 1, 2, 2, 26, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-11-1', 0, 'D2-026-11-1', 0, 1, 2, 2, 26, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-11-2', 0, 'D2-026-11-2', 0, 1, 2, 2, 26, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-12-1', 0, 'D2-026-12-1', 0, 1, 2, 2, 26, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-12-2', 0, 'D2-026-12-2', 0, 1, 2, 2, 26, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-13-1', 0, 'D2-026-13-1', 0, 1, 2, 2, 26, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-13-2', 0, 'D2-026-13-2', 0, 1, 2, 2, 26, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-14-1', 0, 'D2-026-14-1', 0, 1, 2, 2, 26, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-14-2', 0, 'D2-026-14-2', 0, 1, 2, 2, 26, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-15-1', 0, 'D2-026-15-1', 0, 1, 2, 2, 26, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-026-15-2', 0, 'D2-026-15-2', 0, 1, 2, 2, 26, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-01-1', 0, 'D2-027-01-1', 0, 1, 2, 2, 27, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-01-2', 0, 'D2-027-01-2', 0, 1, 2, 2, 27, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-02-1', 0, 'D2-027-02-1', 0, 1, 2, 2, 27, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-02-2', 0, 'D2-027-02-2', 0, 1, 2, 2, 27, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-03-1', 0, 'D2-027-03-1', 0, 1, 2, 2, 27, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-03-2', 0, 'D2-027-03-2', 0, 1, 2, 2, 27, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-04-1', 0, 'D2-027-04-1', 0, 1, 2, 2, 27, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-04-2', 0, 'D2-027-04-2', 0, 1, 2, 2, 27, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-05-1', 0, 'D2-027-05-1', 0, 1, 2, 2, 27, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-05-2', 0, 'D2-027-05-2', 0, 1, 2, 2, 27, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-06-1', 0, 'D2-027-06-1', 0, 1, 2, 2, 27, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-06-2', 0, 'D2-027-06-2', 0, 1, 2, 2, 27, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-07-1', 0, 'D2-027-07-1', 0, 1, 2, 2, 27, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-07-2', 0, 'D2-027-07-2', 0, 1, 2, 2, 27, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-08-1', 0, 'D2-027-08-1', 0, 1, 2, 2, 27, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-08-2', 0, 'D2-027-08-2', 0, 1, 2, 2, 27, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-09-1', 0, 'D2-027-09-1', 0, 1, 2, 2, 27, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-09-2', 0, 'D2-027-09-2', 0, 1, 2, 2, 27, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-10-1', 0, 'D2-027-10-1', 0, 1, 2, 2, 27, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-10-2', 0, 'D2-027-10-2', 0, 1, 2, 2, 27, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-11-1', 0, 'D2-027-11-1', 0, 1, 2, 2, 27, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-11-2', 0, 'D2-027-11-2', 0, 1, 2, 2, 27, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-12-1', 0, 'D2-027-12-1', 0, 1, 2, 2, 27, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-12-2', 0, 'D2-027-12-2', 0, 1, 2, 2, 27, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-13-1', 0, 'D2-027-13-1', 0, 1, 2, 2, 27, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-13-2', 0, 'D2-027-13-2', 0, 1, 2, 2, 27, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-14-1', 0, 'D2-027-14-1', 0, 1, 2, 2, 27, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-14-2', 0, 'D2-027-14-2', 0, 1, 2, 2, 27, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-15-1', 0, 'D2-027-15-1', 0, 1, 2, 2, 27, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-027-15-2', 0, 'D2-027-15-2', 0, 1, 2, 2, 27, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-01-1', 0, 'D2-028-01-1', 0, 1, 2, 2, 28, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-01-2', 0, 'D2-028-01-2', 0, 1, 2, 2, 28, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-02-1', 0, 'D2-028-02-1', 0, 1, 2, 2, 28, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-02-2', 0, 'D2-028-02-2', 0, 1, 2, 2, 28, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-03-1', 0, 'D2-028-03-1', 0, 1, 2, 2, 28, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-03-2', 0, 'D2-028-03-2', 0, 1, 2, 2, 28, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-04-1', 0, 'D2-028-04-1', 0, 1, 2, 2, 28, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-04-2', 0, 'D2-028-04-2', 0, 1, 2, 2, 28, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-05-1', 0, 'D2-028-05-1', 0, 1, 2, 2, 28, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-05-2', 0, 'D2-028-05-2', 0, 1, 2, 2, 28, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-06-1', 0, 'D2-028-06-1', 0, 1, 2, 2, 28, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-06-2', 0, 'D2-028-06-2', 0, 1, 2, 2, 28, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-07-1', 0, 'D2-028-07-1', 0, 1, 2, 2, 28, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-07-2', 0, 'D2-028-07-2', 0, 1, 2, 2, 28, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-08-1', 0, 'D2-028-08-1', 0, 1, 2, 2, 28, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-08-2', 0, 'D2-028-08-2', 0, 1, 2, 2, 28, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-09-1', 0, 'D2-028-09-1', 0, 1, 2, 2, 28, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-09-2', 0, 'D2-028-09-2', 0, 1, 2, 2, 28, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-10-1', 0, 'D2-028-10-1', 0, 1, 2, 2, 28, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-10-2', 0, 'D2-028-10-2', 0, 1, 2, 2, 28, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-11-1', 0, 'D2-028-11-1', 0, 1, 2, 2, 28, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-11-2', 0, 'D2-028-11-2', 0, 1, 2, 2, 28, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-12-1', 0, 'D2-028-12-1', 0, 1, 2, 2, 28, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-12-2', 0, 'D2-028-12-2', 0, 1, 2, 2, 28, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-13-1', 0, 'D2-028-13-1', 0, 1, 2, 2, 28, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-13-2', 0, 'D2-028-13-2', 0, 1, 2, 2, 28, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-14-1', 0, 'D2-028-14-1', 0, 1, 2, 2, 28, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-14-2', 0, 'D2-028-14-2', 0, 1, 2, 2, 28, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-15-1', 0, 'D2-028-15-1', 0, 1, 2, 2, 28, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-028-15-2', 0, 'D2-028-15-2', 0, 1, 2, 2, 28, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-01-1', 0, 'D2-029-01-1', 0, 1, 2, 2, 29, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-01-2', 0, 'D2-029-01-2', 0, 1, 2, 2, 29, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-02-1', 0, 'D2-029-02-1', 0, 1, 2, 2, 29, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-02-2', 0, 'D2-029-02-2', 0, 1, 2, 2, 29, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-03-1', 0, 'D2-029-03-1', 0, 1, 2, 2, 29, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-03-2', 0, 'D2-029-03-2', 0, 1, 2, 2, 29, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-04-1', 0, 'D2-029-04-1', 0, 1, 2, 2, 29, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-04-2', 0, 'D2-029-04-2', 0, 1, 2, 2, 29, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-05-1', 0, 'D2-029-05-1', 0, 1, 2, 2, 29, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-05-2', 0, 'D2-029-05-2', 0, 1, 2, 2, 29, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-06-1', 0, 'D2-029-06-1', 0, 1, 2, 2, 29, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-06-2', 0, 'D2-029-06-2', 0, 1, 2, 2, 29, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-07-1', 0, 'D2-029-07-1', 0, 1, 2, 2, 29, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-07-2', 0, 'D2-029-07-2', 0, 1, 2, 2, 29, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-08-1', 0, 'D2-029-08-1', 0, 1, 2, 2, 29, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-08-2', 0, 'D2-029-08-2', 0, 1, 2, 2, 29, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-09-1', 0, 'D2-029-09-1', 0, 1, 2, 2, 29, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-09-2', 0, 'D2-029-09-2', 0, 1, 2, 2, 29, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-10-1', 0, 'D2-029-10-1', 0, 1, 2, 2, 29, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-10-2', 0, 'D2-029-10-2', 0, 1, 2, 2, 29, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-11-1', 0, 'D2-029-11-1', 0, 1, 2, 2, 29, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-11-2', 0, 'D2-029-11-2', 0, 1, 2, 2, 29, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-12-1', 0, 'D2-029-12-1', 0, 1, 2, 2, 29, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-12-2', 0, 'D2-029-12-2', 0, 1, 2, 2, 29, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-13-1', 0, 'D2-029-13-1', 0, 1, 2, 2, 29, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-13-2', 0, 'D2-029-13-2', 0, 1, 2, 2, 29, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-14-1', 0, 'D2-029-14-1', 0, 1, 2, 2, 29, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-14-2', 0, 'D2-029-14-2', 0, 1, 2, 2, 29, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-15-1', 0, 'D2-029-15-1', 0, 1, 2, 2, 29, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-029-15-2', 0, 'D2-029-15-2', 0, 1, 2, 2, 29, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-01-1', 0, 'D2-030-01-1', 0, 1, 2, 2, 30, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-01-2', 0, 'D2-030-01-2', 0, 1, 2, 2, 30, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-02-1', 0, 'D2-030-02-1', 0, 1, 2, 2, 30, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-02-2', 0, 'D2-030-02-2', 0, 1, 2, 2, 30, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-03-1', 0, 'D2-030-03-1', 0, 1, 2, 2, 30, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-03-2', 0, 'D2-030-03-2', 0, 1, 2, 2, 30, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-04-1', 0, 'D2-030-04-1', 0, 1, 2, 2, 30, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-04-2', 0, 'D2-030-04-2', 0, 1, 2, 2, 30, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-05-1', 0, 'D2-030-05-1', 0, 1, 2, 2, 30, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-05-2', 0, 'D2-030-05-2', 0, 1, 2, 2, 30, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-06-1', 0, 'D2-030-06-1', 0, 1, 2, 2, 30, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-06-2', 0, 'D2-030-06-2', 0, 1, 2, 2, 30, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-07-1', 0, 'D2-030-07-1', 0, 1, 2, 2, 30, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-07-2', 0, 'D2-030-07-2', 0, 1, 2, 2, 30, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-08-1', 0, 'D2-030-08-1', 0, 1, 2, 2, 30, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-08-2', 0, 'D2-030-08-2', 0, 1, 2, 2, 30, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-09-1', 0, 'D2-030-09-1', 0, 1, 2, 2, 30, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-09-2', 0, 'D2-030-09-2', 0, 1, 2, 2, 30, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-10-1', 0, 'D2-030-10-1', 0, 1, 2, 2, 30, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-10-2', 0, 'D2-030-10-2', 0, 1, 2, 2, 30, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-11-1', 0, 'D2-030-11-1', 0, 1, 2, 2, 30, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-11-2', 0, 'D2-030-11-2', 0, 1, 2, 2, 30, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-12-1', 0, 'D2-030-12-1', 0, 1, 2, 2, 30, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-12-2', 0, 'D2-030-12-2', 0, 1, 2, 2, 30, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-13-1', 0, 'D2-030-13-1', 0, 1, 2, 2, 30, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-13-2', 0, 'D2-030-13-2', 0, 1, 2, 2, 30, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-14-1', 0, 'D2-030-14-1', 0, 1, 2, 2, 30, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-14-2', 0, 'D2-030-14-2', 0, 1, 2, 2, 30, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-15-1', 0, 'D2-030-15-1', 0, 1, 2, 2, 30, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-030-15-2', 0, 'D2-030-15-2', 0, 1, 2, 2, 30, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-01-1', 0, 'D2-031-01-1', 0, 1, 2, 2, 31, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-01-2', 0, 'D2-031-01-2', 0, 1, 2, 2, 31, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-02-1', 0, 'D2-031-02-1', 0, 1, 2, 2, 31, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-02-2', 0, 'D2-031-02-2', 0, 1, 2, 2, 31, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-03-1', 0, 'D2-031-03-1', 0, 1, 2, 2, 31, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-03-2', 0, 'D2-031-03-2', 0, 1, 2, 2, 31, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-04-1', 0, 'D2-031-04-1', 0, 1, 2, 2, 31, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-04-2', 0, 'D2-031-04-2', 0, 1, 2, 2, 31, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-05-1', 0, 'D2-031-05-1', 0, 1, 2, 2, 31, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-05-2', 0, 'D2-031-05-2', 0, 1, 2, 2, 31, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-06-1', 0, 'D2-031-06-1', 0, 1, 2, 2, 31, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-06-2', 0, 'D2-031-06-2', 0, 1, 2, 2, 31, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-07-1', 0, 'D2-031-07-1', 0, 1, 2, 2, 31, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-07-2', 0, 'D2-031-07-2', 0, 1, 2, 2, 31, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-08-1', 0, 'D2-031-08-1', 0, 1, 2, 2, 31, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-08-2', 0, 'D2-031-08-2', 0, 1, 2, 2, 31, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-09-1', 0, 'D2-031-09-1', 0, 1, 2, 2, 31, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-09-2', 0, 'D2-031-09-2', 0, 1, 2, 2, 31, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-10-1', 0, 'D2-031-10-1', 0, 1, 2, 2, 31, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-10-2', 0, 'D2-031-10-2', 0, 1, 2, 2, 31, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-11-1', 0, 'D2-031-11-1', 0, 1, 2, 2, 31, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-11-2', 0, 'D2-031-11-2', 0, 1, 2, 2, 31, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-12-1', 0, 'D2-031-12-1', 0, 1, 2, 2, 31, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-12-2', 0, 'D2-031-12-2', 0, 1, 2, 2, 31, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-13-1', 0, 'D2-031-13-1', 0, 1, 2, 2, 31, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-13-2', 0, 'D2-031-13-2', 0, 1, 2, 2, 31, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-14-1', 0, 'D2-031-14-1', 0, 1, 2, 2, 31, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-14-2', 0, 'D2-031-14-2', 0, 1, 2, 2, 31, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-15-1', 0, 'D2-031-15-1', 0, 1, 2, 2, 31, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-031-15-2', 0, 'D2-031-15-2', 0, 1, 2, 2, 31, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-01-1', 0, 'D2-032-01-1', 0, 1, 2, 2, 32, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-01-2', 0, 'D2-032-01-2', 0, 1, 2, 2, 32, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-02-1', 0, 'D2-032-02-1', 0, 1, 2, 2, 32, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-02-2', 0, 'D2-032-02-2', 0, 1, 2, 2, 32, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-03-1', 0, 'D2-032-03-1', 0, 1, 2, 2, 32, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-03-2', 0, 'D2-032-03-2', 0, 1, 2, 2, 32, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-04-1', 0, 'D2-032-04-1', 0, 1, 2, 2, 32, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-04-2', 0, 'D2-032-04-2', 0, 1, 2, 2, 32, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-05-1', 0, 'D2-032-05-1', 0, 1, 2, 2, 32, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-05-2', 0, 'D2-032-05-2', 0, 1, 2, 2, 32, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-06-1', 0, 'D2-032-06-1', 0, 1, 2, 2, 32, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-06-2', 0, 'D2-032-06-2', 0, 1, 2, 2, 32, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-07-1', 0, 'D2-032-07-1', 0, 1, 2, 2, 32, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-07-2', 0, 'D2-032-07-2', 0, 1, 2, 2, 32, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-08-1', 0, 'D2-032-08-1', 0, 1, 2, 2, 32, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-08-2', 0, 'D2-032-08-2', 0, 1, 2, 2, 32, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-09-1', 0, 'D2-032-09-1', 0, 1, 2, 2, 32, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-09-2', 0, 'D2-032-09-2', 0, 1, 2, 2, 32, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-10-1', 0, 'D2-032-10-1', 0, 1, 2, 2, 32, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-10-2', 0, 'D2-032-10-2', 0, 1, 2, 2, 32, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-11-1', 0, 'D2-032-11-1', 0, 1, 2, 2, 32, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-11-2', 0, 'D2-032-11-2', 0, 1, 2, 2, 32, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-12-1', 0, 'D2-032-12-1', 0, 1, 2, 2, 32, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-12-2', 0, 'D2-032-12-2', 0, 1, 2, 2, 32, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-13-1', 0, 'D2-032-13-1', 0, 1, 2, 2, 32, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-13-2', 0, 'D2-032-13-2', 0, 1, 2, 2, 32, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-14-1', 0, 'D2-032-14-1', 0, 1, 2, 2, 32, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-14-2', 0, 'D2-032-14-2', 0, 1, 2, 2, 32, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-15-1', 0, 'D2-032-15-1', 0, 1, 2, 2, 32, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-032-15-2', 0, 'D2-032-15-2', 0, 1, 2, 2, 32, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-01-1', 0, 'D2-033-01-1', 0, 1, 2, 2, 33, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-01-2', 0, 'D2-033-01-2', 0, 1, 2, 2, 33, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-02-1', 0, 'D2-033-02-1', 0, 1, 2, 2, 33, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-02-2', 0, 'D2-033-02-2', 0, 1, 2, 2, 33, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-03-1', 0, 'D2-033-03-1', 0, 1, 2, 2, 33, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-03-2', 0, 'D2-033-03-2', 0, 1, 2, 2, 33, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-04-1', 0, 'D2-033-04-1', 0, 1, 2, 2, 33, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-04-2', 0, 'D2-033-04-2', 0, 1, 2, 2, 33, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-05-1', 0, 'D2-033-05-1', 0, 1, 2, 2, 33, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-05-2', 0, 'D2-033-05-2', 0, 1, 2, 2, 33, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-06-1', 0, 'D2-033-06-1', 0, 1, 2, 2, 33, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-06-2', 0, 'D2-033-06-2', 0, 1, 2, 2, 33, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-07-1', 0, 'D2-033-07-1', 0, 1, 2, 2, 33, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-07-2', 0, 'D2-033-07-2', 0, 1, 2, 2, 33, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-08-1', 0, 'D2-033-08-1', 0, 1, 2, 2, 33, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-08-2', 0, 'D2-033-08-2', 0, 1, 2, 2, 33, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-09-1', 0, 'D2-033-09-1', 0, 1, 2, 2, 33, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-09-2', 0, 'D2-033-09-2', 0, 1, 2, 2, 33, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-10-1', 0, 'D2-033-10-1', 0, 1, 2, 2, 33, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-10-2', 0, 'D2-033-10-2', 0, 1, 2, 2, 33, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-11-1', 0, 'D2-033-11-1', 0, 1, 2, 2, 33, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-11-2', 0, 'D2-033-11-2', 0, 1, 2, 2, 33, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-12-1', 0, 'D2-033-12-1', 0, 1, 2, 2, 33, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-12-2', 0, 'D2-033-12-2', 0, 1, 2, 2, 33, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-13-1', 0, 'D2-033-13-1', 0, 1, 2, 2, 33, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-13-2', 0, 'D2-033-13-2', 0, 1, 2, 2, 33, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-14-1', 0, 'D2-033-14-1', 0, 1, 2, 2, 33, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-14-2', 0, 'D2-033-14-2', 0, 1, 2, 2, 33, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-15-1', 0, 'D2-033-15-1', 0, 1, 2, 2, 33, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-033-15-2', 0, 'D2-033-15-2', 0, 1, 2, 2, 33, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-01-1', 0, 'D2-034-01-1', 0, 1, 2, 2, 34, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-01-2', 0, 'D2-034-01-2', 0, 1, 2, 2, 34, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-02-1', 0, 'D2-034-02-1', 0, 1, 2, 2, 34, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-02-2', 0, 'D2-034-02-2', 0, 1, 2, 2, 34, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-03-1', 0, 'D2-034-03-1', 0, 1, 2, 2, 34, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-03-2', 0, 'D2-034-03-2', 0, 1, 2, 2, 34, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-04-1', 0, 'D2-034-04-1', 0, 1, 2, 2, 34, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-04-2', 0, 'D2-034-04-2', 0, 1, 2, 2, 34, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-05-1', 0, 'D2-034-05-1', 0, 1, 2, 2, 34, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-05-2', 0, 'D2-034-05-2', 0, 1, 2, 2, 34, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-06-1', 0, 'D2-034-06-1', 0, 1, 2, 2, 34, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-06-2', 0, 'D2-034-06-2', 0, 1, 2, 2, 34, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-07-1', 0, 'D2-034-07-1', 0, 1, 2, 2, 34, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-07-2', 0, 'D2-034-07-2', 0, 1, 2, 2, 34, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-08-1', 0, 'D2-034-08-1', 0, 1, 2, 2, 34, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-08-2', 0, 'D2-034-08-2', 0, 1, 2, 2, 34, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-09-1', 0, 'D2-034-09-1', 0, 1, 2, 2, 34, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-09-2', 0, 'D2-034-09-2', 0, 1, 2, 2, 34, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-10-1', 0, 'D2-034-10-1', 0, 1, 2, 2, 34, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-10-2', 0, 'D2-034-10-2', 0, 1, 2, 2, 34, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-11-1', 0, 'D2-034-11-1', 0, 1, 2, 2, 34, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-11-2', 0, 'D2-034-11-2', 0, 1, 2, 2, 34, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-12-1', 0, 'D2-034-12-1', 0, 1, 2, 2, 34, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-12-2', 0, 'D2-034-12-2', 0, 1, 2, 2, 34, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-13-1', 0, 'D2-034-13-1', 0, 1, 2, 2, 34, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-13-2', 0, 'D2-034-13-2', 0, 1, 2, 2, 34, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-14-1', 0, 'D2-034-14-1', 0, 1, 2, 2, 34, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-14-2', 0, 'D2-034-14-2', 0, 1, 2, 2, 34, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-15-1', 0, 'D2-034-15-1', 0, 1, 2, 2, 34, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-034-15-2', 0, 'D2-034-15-2', 0, 1, 2, 2, 34, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-01-1', 0, 'D2-035-01-1', 0, 1, 2, 2, 35, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-01-2', 0, 'D2-035-01-2', 0, 1, 2, 2, 35, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-02-1', 0, 'D2-035-02-1', 0, 1, 2, 2, 35, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-02-2', 0, 'D2-035-02-2', 0, 1, 2, 2, 35, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-03-1', 0, 'D2-035-03-1', 0, 1, 2, 2, 35, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-03-2', 0, 'D2-035-03-2', 0, 1, 2, 2, 35, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-04-1', 0, 'D2-035-04-1', 0, 1, 2, 2, 35, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-04-2', 0, 'D2-035-04-2', 0, 1, 2, 2, 35, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-05-1', 0, 'D2-035-05-1', 0, 1, 2, 2, 35, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-05-2', 0, 'D2-035-05-2', 0, 1, 2, 2, 35, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-06-1', 0, 'D2-035-06-1', 0, 1, 2, 2, 35, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-06-2', 0, 'D2-035-06-2', 0, 1, 2, 2, 35, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-07-1', 0, 'D2-035-07-1', 0, 1, 2, 2, 35, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-07-2', 0, 'D2-035-07-2', 0, 1, 2, 2, 35, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-08-1', 0, 'D2-035-08-1', 0, 1, 2, 2, 35, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-08-2', 0, 'D2-035-08-2', 0, 1, 2, 2, 35, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-09-1', 0, 'D2-035-09-1', 0, 1, 2, 2, 35, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-09-2', 0, 'D2-035-09-2', 0, 1, 2, 2, 35, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-10-1', 0, 'D2-035-10-1', 0, 1, 2, 2, 35, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-10-2', 0, 'D2-035-10-2', 0, 1, 2, 2, 35, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-11-1', 0, 'D2-035-11-1', 0, 1, 2, 2, 35, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-11-2', 0, 'D2-035-11-2', 0, 1, 2, 2, 35, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-12-1', 0, 'D2-035-12-1', 0, 1, 2, 2, 35, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-12-2', 0, 'D2-035-12-2', 0, 1, 2, 2, 35, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-13-1', 0, 'D2-035-13-1', 0, 1, 2, 2, 35, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-13-2', 0, 'D2-035-13-2', 0, 1, 2, 2, 35, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-14-1', 0, 'D2-035-14-1', 0, 1, 2, 2, 35, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-14-2', 0, 'D2-035-14-2', 0, 1, 2, 2, 35, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-15-1', 0, 'D2-035-15-1', 0, 1, 2, 2, 35, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-035-15-2', 0, 'D2-035-15-2', 0, 1, 2, 2, 35, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-01-1', 0, 'D2-036-01-1', 0, 1, 2, 2, 36, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-01-2', 0, 'D2-036-01-2', 0, 1, 2, 2, 36, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-02-1', 0, 'D2-036-02-1', 0, 1, 2, 2, 36, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-02-2', 0, 'D2-036-02-2', 0, 1, 2, 2, 36, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-03-1', 0, 'D2-036-03-1', 0, 1, 2, 2, 36, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-03-2', 0, 'D2-036-03-2', 0, 1, 2, 2, 36, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-04-1', 0, 'D2-036-04-1', 0, 1, 2, 2, 36, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-04-2', 0, 'D2-036-04-2', 0, 1, 2, 2, 36, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-05-1', 0, 'D2-036-05-1', 0, 1, 2, 2, 36, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-05-2', 0, 'D2-036-05-2', 0, 1, 2, 2, 36, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-06-1', 0, 'D2-036-06-1', 0, 1, 2, 2, 36, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-06-2', 0, 'D2-036-06-2', 0, 1, 2, 2, 36, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-07-1', 0, 'D2-036-07-1', 0, 1, 2, 2, 36, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-07-2', 0, 'D2-036-07-2', 0, 1, 2, 2, 36, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-08-1', 0, 'D2-036-08-1', 0, 1, 2, 2, 36, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-08-2', 0, 'D2-036-08-2', 0, 1, 2, 2, 36, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-09-1', 0, 'D2-036-09-1', 0, 1, 2, 2, 36, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-09-2', 0, 'D2-036-09-2', 0, 1, 2, 2, 36, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-10-1', 0, 'D2-036-10-1', 0, 1, 2, 2, 36, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-10-2', 0, 'D2-036-10-2', 0, 1, 2, 2, 36, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-11-1', 0, 'D2-036-11-1', 0, 1, 2, 2, 36, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-11-2', 0, 'D2-036-11-2', 0, 1, 2, 2, 36, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-12-1', 0, 'D2-036-12-1', 0, 1, 2, 2, 36, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-12-2', 0, 'D2-036-12-2', 0, 1, 2, 2, 36, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-13-1', 0, 'D2-036-13-1', 0, 1, 2, 2, 36, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-13-2', 0, 'D2-036-13-2', 0, 1, 2, 2, 36, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-14-1', 0, 'D2-036-14-1', 0, 1, 2, 2, 36, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-14-2', 0, 'D2-036-14-2', 0, 1, 2, 2, 36, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-15-1', 0, 'D2-036-15-1', 0, 1, 2, 2, 36, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-036-15-2', 0, 'D2-036-15-2', 0, 1, 2, 2, 36, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-01-1', 0, 'D2-037-01-1', 0, 1, 2, 2, 37, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-01-2', 0, 'D2-037-01-2', 0, 1, 2, 2, 37, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-02-1', 0, 'D2-037-02-1', 0, 1, 2, 2, 37, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-02-2', 0, 'D2-037-02-2', 0, 1, 2, 2, 37, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-03-1', 0, 'D2-037-03-1', 0, 1, 2, 2, 37, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-03-2', 0, 'D2-037-03-2', 0, 1, 2, 2, 37, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-04-1', 0, 'D2-037-04-1', 0, 1, 2, 2, 37, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-04-2', 0, 'D2-037-04-2', 0, 1, 2, 2, 37, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-05-1', 0, 'D2-037-05-1', 0, 1, 2, 2, 37, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-05-2', 0, 'D2-037-05-2', 0, 1, 2, 2, 37, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-06-1', 0, 'D2-037-06-1', 0, 1, 2, 2, 37, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-06-2', 0, 'D2-037-06-2', 0, 1, 2, 2, 37, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-07-1', 0, 'D2-037-07-1', 0, 1, 2, 2, 37, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-07-2', 0, 'D2-037-07-2', 0, 1, 2, 2, 37, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-08-1', 0, 'D2-037-08-1', 0, 1, 2, 2, 37, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-08-2', 0, 'D2-037-08-2', 0, 1, 2, 2, 37, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-09-1', 0, 'D2-037-09-1', 0, 1, 2, 2, 37, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-09-2', 0, 'D2-037-09-2', 0, 1, 2, 2, 37, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-10-1', 0, 'D2-037-10-1', 0, 1, 2, 2, 37, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-10-2', 0, 'D2-037-10-2', 0, 1, 2, 2, 37, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-11-1', 0, 'D2-037-11-1', 0, 1, 2, 2, 37, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-11-2', 0, 'D2-037-11-2', 0, 1, 2, 2, 37, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-12-1', 0, 'D2-037-12-1', 0, 1, 2, 2, 37, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-12-2', 0, 'D2-037-12-2', 0, 1, 2, 2, 37, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-13-1', 0, 'D2-037-13-1', 0, 1, 2, 2, 37, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-13-2', 0, 'D2-037-13-2', 0, 1, 2, 2, 37, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-14-1', 0, 'D2-037-14-1', 0, 1, 2, 2, 37, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-14-2', 0, 'D2-037-14-2', 0, 1, 2, 2, 37, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-15-1', 0, 'D2-037-15-1', 0, 1, 2, 2, 37, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-037-15-2', 0, 'D2-037-15-2', 0, 1, 2, 2, 37, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-01-1', 0, 'D2-038-01-1', 0, 1, 2, 2, 38, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-01-2', 0, 'D2-038-01-2', 0, 1, 2, 2, 38, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-02-1', 0, 'D2-038-02-1', 0, 1, 2, 2, 38, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-02-2', 0, 'D2-038-02-2', 0, 1, 2, 2, 38, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-03-1', 0, 'D2-038-03-1', 0, 1, 2, 2, 38, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-03-2', 0, 'D2-038-03-2', 0, 1, 2, 2, 38, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-04-1', 0, 'D2-038-04-1', 0, 1, 2, 2, 38, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-04-2', 0, 'D2-038-04-2', 0, 1, 2, 2, 38, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-05-1', 0, 'D2-038-05-1', 0, 1, 2, 2, 38, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-05-2', 0, 'D2-038-05-2', 0, 1, 2, 2, 38, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-06-1', 0, 'D2-038-06-1', 0, 1, 2, 2, 38, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-06-2', 0, 'D2-038-06-2', 0, 1, 2, 2, 38, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-07-1', 0, 'D2-038-07-1', 0, 1, 2, 2, 38, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-07-2', 0, 'D2-038-07-2', 0, 1, 2, 2, 38, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-08-1', 0, 'D2-038-08-1', 0, 1, 2, 2, 38, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-08-2', 0, 'D2-038-08-2', 0, 1, 2, 2, 38, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-09-1', 0, 'D2-038-09-1', 0, 1, 2, 2, 38, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-09-2', 0, 'D2-038-09-2', 0, 1, 2, 2, 38, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-10-1', 0, 'D2-038-10-1', 0, 1, 2, 2, 38, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-10-2', 0, 'D2-038-10-2', 0, 1, 2, 2, 38, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-11-1', 0, 'D2-038-11-1', 0, 1, 2, 2, 38, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-11-2', 0, 'D2-038-11-2', 0, 1, 2, 2, 38, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-12-1', 0, 'D2-038-12-1', 0, 1, 2, 2, 38, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-12-2', 0, 'D2-038-12-2', 0, 1, 2, 2, 38, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-13-1', 0, 'D2-038-13-1', 0, 1, 2, 2, 38, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-13-2', 0, 'D2-038-13-2', 0, 1, 2, 2, 38, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-14-1', 0, 'D2-038-14-1', 0, 1, 2, 2, 38, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-14-2', 0, 'D2-038-14-2', 0, 1, 2, 2, 38, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-15-1', 0, 'D2-038-15-1', 0, 1, 2, 2, 38, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-038-15-2', 0, 'D2-038-15-2', 0, 1, 2, 2, 38, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-01-1', 0, 'D2-039-01-1', 0, 1, 2, 2, 39, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-01-2', 0, 'D2-039-01-2', 0, 1, 2, 2, 39, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-02-1', 0, 'D2-039-02-1', 0, 1, 2, 2, 39, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-02-2', 0, 'D2-039-02-2', 0, 1, 2, 2, 39, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-03-1', 0, 'D2-039-03-1', 0, 1, 2, 2, 39, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-03-2', 0, 'D2-039-03-2', 0, 1, 2, 2, 39, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-04-1', 0, 'D2-039-04-1', 0, 1, 2, 2, 39, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-04-2', 0, 'D2-039-04-2', 0, 1, 2, 2, 39, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-05-1', 0, 'D2-039-05-1', 0, 1, 2, 2, 39, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-05-2', 0, 'D2-039-05-2', 0, 1, 2, 2, 39, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-06-1', 0, 'D2-039-06-1', 0, 1, 2, 2, 39, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-06-2', 0, 'D2-039-06-2', 0, 1, 2, 2, 39, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-07-1', 0, 'D2-039-07-1', 0, 1, 2, 2, 39, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-07-2', 0, 'D2-039-07-2', 0, 1, 2, 2, 39, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-08-1', 0, 'D2-039-08-1', 0, 1, 2, 2, 39, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-08-2', 0, 'D2-039-08-2', 0, 1, 2, 2, 39, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-09-1', 0, 'D2-039-09-1', 0, 1, 2, 2, 39, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-09-2', 0, 'D2-039-09-2', 0, 1, 2, 2, 39, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-10-1', 0, 'D2-039-10-1', 0, 1, 2, 2, 39, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-10-2', 0, 'D2-039-10-2', 0, 1, 2, 2, 39, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-11-1', 0, 'D2-039-11-1', 0, 1, 2, 2, 39, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-11-2', 0, 'D2-039-11-2', 0, 1, 2, 2, 39, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-12-1', 0, 'D2-039-12-1', 0, 1, 2, 2, 39, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-12-2', 0, 'D2-039-12-2', 0, 1, 2, 2, 39, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-13-1', 0, 'D2-039-13-1', 0, 1, 2, 2, 39, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-13-2', 0, 'D2-039-13-2', 0, 1, 2, 2, 39, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-14-1', 0, 'D2-039-14-1', 0, 1, 2, 2, 39, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-14-2', 0, 'D2-039-14-2', 0, 1, 2, 2, 39, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-15-1', 0, 'D2-039-15-1', 0, 1, 2, 2, 39, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-039-15-2', 0, 'D2-039-15-2', 0, 1, 2, 2, 39, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-01-1', 0, 'D2-040-01-1', 0, 1, 2, 2, 40, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-01-2', 0, 'D2-040-01-2', 0, 1, 2, 2, 40, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-02-1', 0, 'D2-040-02-1', 0, 1, 2, 2, 40, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-02-2', 0, 'D2-040-02-2', 0, 1, 2, 2, 40, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-03-1', 0, 'D2-040-03-1', 0, 1, 2, 2, 40, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-03-2', 0, 'D2-040-03-2', 0, 1, 2, 2, 40, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-04-1', 0, 'D2-040-04-1', 0, 1, 2, 2, 40, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-04-2', 0, 'D2-040-04-2', 0, 1, 2, 2, 40, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-05-1', 0, 'D2-040-05-1', 0, 1, 2, 2, 40, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-05-2', 0, 'D2-040-05-2', 0, 1, 2, 2, 40, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-06-1', 0, 'D2-040-06-1', 0, 1, 2, 2, 40, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-06-2', 0, 'D2-040-06-2', 0, 1, 2, 2, 40, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-07-1', 0, 'D2-040-07-1', 0, 1, 2, 2, 40, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-07-2', 0, 'D2-040-07-2', 0, 1, 2, 2, 40, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-08-1', 0, 'D2-040-08-1', 0, 1, 2, 2, 40, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-08-2', 0, 'D2-040-08-2', 0, 1, 2, 2, 40, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-09-1', 0, 'D2-040-09-1', 0, 1, 2, 2, 40, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-09-2', 0, 'D2-040-09-2', 0, 1, 2, 2, 40, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-10-1', 0, 'D2-040-10-1', 0, 1, 2, 2, 40, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-10-2', 0, 'D2-040-10-2', 0, 1, 2, 2, 40, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-11-1', 0, 'D2-040-11-1', 0, 1, 2, 2, 40, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-11-2', 0, 'D2-040-11-2', 0, 1, 2, 2, 40, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-12-1', 0, 'D2-040-12-1', 0, 1, 2, 2, 40, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-12-2', 0, 'D2-040-12-2', 0, 1, 2, 2, 40, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-13-1', 0, 'D2-040-13-1', 0, 1, 2, 2, 40, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-13-2', 0, 'D2-040-13-2', 0, 1, 2, 2, 40, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-14-1', 0, 'D2-040-14-1', 0, 1, 2, 2, 40, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-14-2', 0, 'D2-040-14-2', 0, 1, 2, 2, 40, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-15-1', 0, 'D2-040-15-1', 0, 1, 2, 2, 40, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-040-15-2', 0, 'D2-040-15-2', 0, 1, 2, 2, 40, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-01-1', 0, 'D2-041-01-1', 0, 1, 2, 2, 41, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-01-2', 0, 'D2-041-01-2', 0, 1, 2, 2, 41, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-02-1', 0, 'D2-041-02-1', 0, 1, 2, 2, 41, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-02-2', 0, 'D2-041-02-2', 0, 1, 2, 2, 41, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-03-1', 0, 'D2-041-03-1', 0, 1, 2, 2, 41, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-03-2', 0, 'D2-041-03-2', 0, 1, 2, 2, 41, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-04-1', 0, 'D2-041-04-1', 0, 1, 2, 2, 41, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-04-2', 0, 'D2-041-04-2', 0, 1, 2, 2, 41, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-05-1', 0, 'D2-041-05-1', 0, 1, 2, 2, 41, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-05-2', 0, 'D2-041-05-2', 0, 1, 2, 2, 41, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-06-1', 0, 'D2-041-06-1', 0, 1, 2, 2, 41, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-06-2', 0, 'D2-041-06-2', 0, 1, 2, 2, 41, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-07-1', 0, 'D2-041-07-1', 0, 1, 2, 2, 41, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-07-2', 0, 'D2-041-07-2', 0, 1, 2, 2, 41, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-08-1', 0, 'D2-041-08-1', 0, 1, 2, 2, 41, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-08-2', 0, 'D2-041-08-2', 0, 1, 2, 2, 41, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-09-1', 0, 'D2-041-09-1', 0, 1, 2, 2, 41, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-09-2', 0, 'D2-041-09-2', 0, 1, 2, 2, 41, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-10-1', 0, 'D2-041-10-1', 0, 1, 2, 2, 41, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-10-2', 0, 'D2-041-10-2', 0, 1, 2, 2, 41, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-11-1', 0, 'D2-041-11-1', 0, 1, 2, 2, 41, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-11-2', 0, 'D2-041-11-2', 0, 1, 2, 2, 41, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-12-1', 0, 'D2-041-12-1', 0, 1, 2, 2, 41, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-12-2', 0, 'D2-041-12-2', 0, 1, 2, 2, 41, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-13-1', 0, 'D2-041-13-1', 0, 1, 2, 2, 41, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-13-2', 0, 'D2-041-13-2', 0, 1, 2, 2, 41, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-14-1', 0, 'D2-041-14-1', 0, 1, 2, 2, 41, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-14-2', 0, 'D2-041-14-2', 0, 1, 2, 2, 41, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-15-1', 0, 'D2-041-15-1', 0, 1, 2, 2, 41, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-041-15-2', 0, 'D2-041-15-2', 0, 1, 2, 2, 41, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-01-1', 0, 'D2-042-01-1', 0, 1, 2, 2, 42, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-01-2', 0, 'D2-042-01-2', 0, 1, 2, 2, 42, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-02-1', 0, 'D2-042-02-1', 0, 1, 2, 2, 42, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-02-2', 0, 'D2-042-02-2', 0, 1, 2, 2, 42, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-03-1', 0, 'D2-042-03-1', 0, 1, 2, 2, 42, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-03-2', 0, 'D2-042-03-2', 0, 1, 2, 2, 42, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-04-1', 0, 'D2-042-04-1', 0, 1, 2, 2, 42, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-04-2', 0, 'D2-042-04-2', 0, 1, 2, 2, 42, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-05-1', 0, 'D2-042-05-1', 0, 1, 2, 2, 42, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-05-2', 0, 'D2-042-05-2', 0, 1, 2, 2, 42, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-06-1', 0, 'D2-042-06-1', 0, 1, 2, 2, 42, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-06-2', 0, 'D2-042-06-2', 0, 1, 2, 2, 42, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-07-1', 0, 'D2-042-07-1', 0, 1, 2, 2, 42, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-07-2', 0, 'D2-042-07-2', 0, 1, 2, 2, 42, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-08-1', 0, 'D2-042-08-1', 0, 1, 2, 2, 42, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-08-2', 0, 'D2-042-08-2', 0, 1, 2, 2, 42, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-09-1', 0, 'D2-042-09-1', 0, 1, 2, 2, 42, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-09-2', 0, 'D2-042-09-2', 0, 1, 2, 2, 42, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-10-1', 0, 'D2-042-10-1', 0, 1, 2, 2, 42, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-10-2', 0, 'D2-042-10-2', 0, 1, 2, 2, 42, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-11-1', 0, 'D2-042-11-1', 0, 1, 2, 2, 42, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-11-2', 0, 'D2-042-11-2', 0, 1, 2, 2, 42, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-12-1', 0, 'D2-042-12-1', 0, 1, 2, 2, 42, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-12-2', 0, 'D2-042-12-2', 0, 1, 2, 2, 42, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-13-1', 0, 'D2-042-13-1', 0, 1, 2, 2, 42, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-13-2', 0, 'D2-042-13-2', 0, 1, 2, 2, 42, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-14-1', 0, 'D2-042-14-1', 0, 1, 2, 2, 42, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-14-2', 0, 'D2-042-14-2', 0, 1, 2, 2, 42, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-15-1', 0, 'D2-042-15-1', 0, 1, 2, 2, 42, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-042-15-2', 0, 'D2-042-15-2', 0, 1, 2, 2, 42, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-01-1', 0, 'D2-043-01-1', 0, 1, 2, 2, 43, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-01-2', 0, 'D2-043-01-2', 0, 1, 2, 2, 43, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-02-1', 0, 'D2-043-02-1', 0, 1, 2, 2, 43, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-02-2', 0, 'D2-043-02-2', 0, 1, 2, 2, 43, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-03-1', 0, 'D2-043-03-1', 0, 1, 2, 2, 43, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-03-2', 0, 'D2-043-03-2', 0, 1, 2, 2, 43, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-04-1', 0, 'D2-043-04-1', 0, 1, 2, 2, 43, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-04-2', 0, 'D2-043-04-2', 0, 1, 2, 2, 43, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-05-1', 0, 'D2-043-05-1', 0, 1, 2, 2, 43, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-05-2', 0, 'D2-043-05-2', 0, 1, 2, 2, 43, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-06-1', 0, 'D2-043-06-1', 0, 1, 2, 2, 43, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-06-2', 0, 'D2-043-06-2', 0, 1, 2, 2, 43, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-07-1', 0, 'D2-043-07-1', 0, 1, 2, 2, 43, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-07-2', 0, 'D2-043-07-2', 0, 1, 2, 2, 43, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-08-1', 0, 'D2-043-08-1', 0, 1, 2, 2, 43, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-08-2', 0, 'D2-043-08-2', 0, 1, 2, 2, 43, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-09-1', 0, 'D2-043-09-1', 0, 1, 2, 2, 43, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-09-2', 0, 'D2-043-09-2', 0, 1, 2, 2, 43, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-10-1', 0, 'D2-043-10-1', 0, 1, 2, 2, 43, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-10-2', 0, 'D2-043-10-2', 0, 1, 2, 2, 43, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-11-1', 0, 'D2-043-11-1', 0, 1, 2, 2, 43, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-11-2', 0, 'D2-043-11-2', 0, 1, 2, 2, 43, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-12-1', 0, 'D2-043-12-1', 0, 1, 2, 2, 43, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-12-2', 0, 'D2-043-12-2', 0, 1, 2, 2, 43, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-13-1', 0, 'D2-043-13-1', 0, 1, 2, 2, 43, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-13-2', 0, 'D2-043-13-2', 0, 1, 2, 2, 43, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-14-1', 0, 'D2-043-14-1', 0, 1, 2, 2, 43, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-14-2', 0, 'D2-043-14-2', 0, 1, 2, 2, 43, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-15-1', 0, 'D2-043-15-1', 0, 1, 2, 2, 43, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-043-15-2', 0, 'D2-043-15-2', 0, 1, 2, 2, 43, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-01-1', 0, 'D2-044-01-1', 0, 1, 2, 2, 44, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-01-2', 0, 'D2-044-01-2', 0, 1, 2, 2, 44, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-02-1', 0, 'D2-044-02-1', 0, 1, 2, 2, 44, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-02-2', 0, 'D2-044-02-2', 0, 1, 2, 2, 44, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-03-1', 0, 'D2-044-03-1', 0, 1, 2, 2, 44, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-03-2', 0, 'D2-044-03-2', 0, 1, 2, 2, 44, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-04-1', 0, 'D2-044-04-1', 0, 1, 2, 2, 44, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-04-2', 0, 'D2-044-04-2', 0, 1, 2, 2, 44, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-05-1', 0, 'D2-044-05-1', 0, 1, 2, 2, 44, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-05-2', 0, 'D2-044-05-2', 0, 1, 2, 2, 44, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-06-1', 0, 'D2-044-06-1', 0, 1, 2, 2, 44, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-06-2', 0, 'D2-044-06-2', 0, 1, 2, 2, 44, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-07-1', 0, 'D2-044-07-1', 0, 1, 2, 2, 44, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-07-2', 0, 'D2-044-07-2', 0, 1, 2, 2, 44, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-08-1', 0, 'D2-044-08-1', 0, 1, 2, 2, 44, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-08-2', 0, 'D2-044-08-2', 0, 1, 2, 2, 44, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-09-1', 0, 'D2-044-09-1', 0, 1, 2, 2, 44, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-09-2', 0, 'D2-044-09-2', 0, 1, 2, 2, 44, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-10-1', 0, 'D2-044-10-1', 0, 1, 2, 2, 44, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-10-2', 0, 'D2-044-10-2', 0, 1, 2, 2, 44, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-11-1', 0, 'D2-044-11-1', 0, 1, 2, 2, 44, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-11-2', 0, 'D2-044-11-2', 0, 1, 2, 2, 44, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-12-1', 0, 'D2-044-12-1', 0, 1, 2, 2, 44, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-12-2', 0, 'D2-044-12-2', 0, 1, 2, 2, 44, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-13-1', 0, 'D2-044-13-1', 0, 1, 2, 2, 44, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-13-2', 0, 'D2-044-13-2', 0, 1, 2, 2, 44, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-14-1', 0, 'D2-044-14-1', 0, 1, 2, 2, 44, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-14-2', 0, 'D2-044-14-2', 0, 1, 2, 2, 44, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-15-1', 0, 'D2-044-15-1', 0, 1, 2, 2, 44, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-044-15-2', 0, 'D2-044-15-2', 0, 1, 2, 2, 44, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-01-1', 0, 'D2-045-01-1', 0, 1, 2, 2, 45, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-01-2', 0, 'D2-045-01-2', 0, 1, 2, 2, 45, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-02-1', 0, 'D2-045-02-1', 0, 1, 2, 2, 45, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-02-2', 0, 'D2-045-02-2', 0, 1, 2, 2, 45, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-03-1', 0, 'D2-045-03-1', 0, 1, 2, 2, 45, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-03-2', 0, 'D2-045-03-2', 0, 1, 2, 2, 45, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-04-1', 0, 'D2-045-04-1', 0, 1, 2, 2, 45, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-04-2', 0, 'D2-045-04-2', 0, 1, 2, 2, 45, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-05-1', 0, 'D2-045-05-1', 0, 1, 2, 2, 45, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-05-2', 0, 'D2-045-05-2', 0, 1, 2, 2, 45, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-06-1', 0, 'D2-045-06-1', 0, 1, 2, 2, 45, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-06-2', 0, 'D2-045-06-2', 0, 1, 2, 2, 45, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-07-1', 0, 'D2-045-07-1', 0, 1, 2, 2, 45, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-07-2', 0, 'D2-045-07-2', 0, 1, 2, 2, 45, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-08-1', 0, 'D2-045-08-1', 0, 1, 2, 2, 45, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-08-2', 0, 'D2-045-08-2', 0, 1, 2, 2, 45, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-09-1', 0, 'D2-045-09-1', 0, 1, 2, 2, 45, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-09-2', 0, 'D2-045-09-2', 0, 1, 2, 2, 45, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-10-1', 0, 'D2-045-10-1', 0, 1, 2, 2, 45, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-10-2', 0, 'D2-045-10-2', 0, 1, 2, 2, 45, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-11-1', 0, 'D2-045-11-1', 0, 1, 2, 2, 45, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-11-2', 0, 'D2-045-11-2', 0, 1, 2, 2, 45, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-12-1', 0, 'D2-045-12-1', 0, 1, 2, 2, 45, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-12-2', 0, 'D2-045-12-2', 0, 1, 2, 2, 45, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-13-1', 0, 'D2-045-13-1', 0, 1, 2, 2, 45, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-13-2', 0, 'D2-045-13-2', 0, 1, 2, 2, 45, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-14-1', 0, 'D2-045-14-1', 0, 1, 2, 2, 45, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-14-2', 0, 'D2-045-14-2', 0, 1, 2, 2, 45, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-15-1', 0, 'D2-045-15-1', 0, 1, 2, 2, 45, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-045-15-2', 0, 'D2-045-15-2', 0, 1, 2, 2, 45, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-01-1', 0, 'D2-046-01-1', 0, 1, 2, 2, 46, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-01-2', 0, 'D2-046-01-2', 0, 1, 2, 2, 46, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-02-1', 0, 'D2-046-02-1', 0, 1, 2, 2, 46, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-02-2', 0, 'D2-046-02-2', 0, 1, 2, 2, 46, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-03-1', 0, 'D2-046-03-1', 0, 1, 2, 2, 46, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-03-2', 0, 'D2-046-03-2', 0, 1, 2, 2, 46, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-04-1', 0, 'D2-046-04-1', 0, 1, 2, 2, 46, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-04-2', 0, 'D2-046-04-2', 0, 1, 2, 2, 46, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-05-1', 0, 'D2-046-05-1', 0, 1, 2, 2, 46, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-05-2', 0, 'D2-046-05-2', 0, 1, 2, 2, 46, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-06-1', 0, 'D2-046-06-1', 0, 1, 2, 2, 46, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-06-2', 0, 'D2-046-06-2', 0, 1, 2, 2, 46, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-07-1', 0, 'D2-046-07-1', 0, 1, 2, 2, 46, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-07-2', 0, 'D2-046-07-2', 0, 1, 2, 2, 46, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-08-1', 0, 'D2-046-08-1', 0, 1, 2, 2, 46, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-08-2', 0, 'D2-046-08-2', 0, 1, 2, 2, 46, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-09-1', 0, 'D2-046-09-1', 0, 1, 2, 2, 46, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-09-2', 0, 'D2-046-09-2', 0, 1, 2, 2, 46, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-10-1', 0, 'D2-046-10-1', 0, 1, 2, 2, 46, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-10-2', 0, 'D2-046-10-2', 0, 1, 2, 2, 46, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-11-1', 0, 'D2-046-11-1', 0, 1, 2, 2, 46, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-11-2', 0, 'D2-046-11-2', 0, 1, 2, 2, 46, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-12-1', 0, 'D2-046-12-1', 0, 1, 2, 2, 46, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-12-2', 0, 'D2-046-12-2', 0, 1, 2, 2, 46, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-13-1', 0, 'D2-046-13-1', 0, 1, 2, 2, 46, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-13-2', 0, 'D2-046-13-2', 0, 1, 2, 2, 46, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-14-1', 0, 'D2-046-14-1', 0, 1, 2, 2, 46, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-14-2', 0, 'D2-046-14-2', 0, 1, 2, 2, 46, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-15-1', 0, 'D2-046-15-1', 0, 1, 2, 2, 46, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-046-15-2', 0, 'D2-046-15-2', 0, 1, 2, 2, 46, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-01-1', 0, 'D2-047-01-1', 0, 1, 2, 2, 47, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-01-2', 0, 'D2-047-01-2', 0, 1, 2, 2, 47, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-02-1', 0, 'D2-047-02-1', 0, 1, 2, 2, 47, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-02-2', 0, 'D2-047-02-2', 0, 1, 2, 2, 47, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-03-1', 0, 'D2-047-03-1', 0, 1, 2, 2, 47, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-03-2', 0, 'D2-047-03-2', 0, 1, 2, 2, 47, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-04-1', 0, 'D2-047-04-1', 0, 1, 2, 2, 47, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-04-2', 0, 'D2-047-04-2', 0, 1, 2, 2, 47, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-05-1', 0, 'D2-047-05-1', 0, 1, 2, 2, 47, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-05-2', 0, 'D2-047-05-2', 0, 1, 2, 2, 47, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-06-1', 0, 'D2-047-06-1', 0, 1, 2, 2, 47, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-06-2', 0, 'D2-047-06-2', 0, 1, 2, 2, 47, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-07-1', 0, 'D2-047-07-1', 0, 1, 2, 2, 47, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-07-2', 0, 'D2-047-07-2', 0, 1, 2, 2, 47, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-08-1', 0, 'D2-047-08-1', 0, 1, 2, 2, 47, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-08-2', 0, 'D2-047-08-2', 0, 1, 2, 2, 47, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-09-1', 0, 'D2-047-09-1', 0, 1, 2, 2, 47, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-09-2', 0, 'D2-047-09-2', 0, 1, 2, 2, 47, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-10-1', 0, 'D2-047-10-1', 0, 1, 2, 2, 47, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-10-2', 0, 'D2-047-10-2', 0, 1, 2, 2, 47, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-11-1', 0, 'D2-047-11-1', 0, 1, 2, 2, 47, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-11-2', 0, 'D2-047-11-2', 0, 1, 2, 2, 47, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-12-1', 0, 'D2-047-12-1', 0, 1, 2, 2, 47, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-12-2', 0, 'D2-047-12-2', 0, 1, 2, 2, 47, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-13-1', 0, 'D2-047-13-1', 0, 1, 2, 2, 47, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-13-2', 0, 'D2-047-13-2', 0, 1, 2, 2, 47, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-14-1', 0, 'D2-047-14-1', 0, 1, 2, 2, 47, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-14-2', 0, 'D2-047-14-2', 0, 1, 2, 2, 47, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-15-1', 0, 'D2-047-15-1', 0, 1, 2, 2, 47, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-047-15-2', 0, 'D2-047-15-2', 0, 1, 2, 2, 47, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-01-1', 0, 'D2-048-01-1', 0, 1, 2, 2, 48, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-01-2', 0, 'D2-048-01-2', 0, 1, 2, 2, 48, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-02-1', 0, 'D2-048-02-1', 0, 1, 2, 2, 48, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-02-2', 0, 'D2-048-02-2', 0, 1, 2, 2, 48, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-03-1', 0, 'D2-048-03-1', 0, 1, 2, 2, 48, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-03-2', 0, 'D2-048-03-2', 0, 1, 2, 2, 48, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-04-1', 0, 'D2-048-04-1', 0, 1, 2, 2, 48, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-04-2', 0, 'D2-048-04-2', 0, 1, 2, 2, 48, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-05-1', 0, 'D2-048-05-1', 0, 1, 2, 2, 48, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-05-2', 0, 'D2-048-05-2', 0, 1, 2, 2, 48, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-06-1', 0, 'D2-048-06-1', 0, 1, 2, 2, 48, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-06-2', 0, 'D2-048-06-2', 0, 1, 2, 2, 48, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-07-1', 0, 'D2-048-07-1', 0, 1, 2, 2, 48, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-07-2', 0, 'D2-048-07-2', 0, 1, 2, 2, 48, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-08-1', 0, 'D2-048-08-1', 0, 1, 2, 2, 48, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-08-2', 0, 'D2-048-08-2', 0, 1, 2, 2, 48, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-09-1', 0, 'D2-048-09-1', 0, 1, 2, 2, 48, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-09-2', 0, 'D2-048-09-2', 0, 1, 2, 2, 48, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-10-1', 0, 'D2-048-10-1', 0, 1, 2, 2, 48, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-10-2', 0, 'D2-048-10-2', 0, 1, 2, 2, 48, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-11-1', 0, 'D2-048-11-1', 0, 1, 2, 2, 48, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-11-2', 0, 'D2-048-11-2', 0, 1, 2, 2, 48, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-12-1', 0, 'D2-048-12-1', 0, 1, 2, 2, 48, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-12-2', 0, 'D2-048-12-2', 0, 1, 2, 2, 48, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-13-1', 0, 'D2-048-13-1', 0, 1, 2, 2, 48, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-13-2', 0, 'D2-048-13-2', 0, 1, 2, 2, 48, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-14-1', 0, 'D2-048-14-1', 0, 1, 2, 2, 48, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-14-2', 0, 'D2-048-14-2', 0, 1, 2, 2, 48, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-15-1', 0, 'D2-048-15-1', 0, 1, 2, 2, 48, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-048-15-2', 0, 'D2-048-15-2', 0, 1, 2, 2, 48, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-01-1', 0, 'D2-049-01-1', 0, 1, 2, 2, 49, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-01-2', 0, 'D2-049-01-2', 0, 1, 2, 2, 49, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-02-1', 0, 'D2-049-02-1', 0, 1, 2, 2, 49, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-02-2', 0, 'D2-049-02-2', 0, 1, 2, 2, 49, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-03-1', 0, 'D2-049-03-1', 0, 1, 2, 2, 49, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-03-2', 0, 'D2-049-03-2', 0, 1, 2, 2, 49, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-04-1', 0, 'D2-049-04-1', 0, 1, 2, 2, 49, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-04-2', 0, 'D2-049-04-2', 0, 1, 2, 2, 49, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-05-1', 0, 'D2-049-05-1', 0, 1, 2, 2, 49, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-05-2', 0, 'D2-049-05-2', 0, 1, 2, 2, 49, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-06-1', 0, 'D2-049-06-1', 0, 1, 2, 2, 49, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-06-2', 0, 'D2-049-06-2', 0, 1, 2, 2, 49, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-07-1', 0, 'D2-049-07-1', 0, 1, 2, 2, 49, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-07-2', 0, 'D2-049-07-2', 0, 1, 2, 2, 49, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-08-1', 0, 'D2-049-08-1', 0, 1, 2, 2, 49, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-08-2', 0, 'D2-049-08-2', 0, 1, 2, 2, 49, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-09-1', 0, 'D2-049-09-1', 0, 1, 2, 2, 49, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-09-2', 0, 'D2-049-09-2', 0, 1, 2, 2, 49, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-10-1', 0, 'D2-049-10-1', 0, 1, 2, 2, 49, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-10-2', 0, 'D2-049-10-2', 0, 1, 2, 2, 49, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-11-1', 0, 'D2-049-11-1', 0, 1, 2, 2, 49, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-11-2', 0, 'D2-049-11-2', 0, 1, 2, 2, 49, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-12-1', 0, 'D2-049-12-1', 0, 1, 2, 2, 49, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-12-2', 0, 'D2-049-12-2', 0, 1, 2, 2, 49, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-13-1', 0, 'D2-049-13-1', 0, 1, 2, 2, 49, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-13-2', 0, 'D2-049-13-2', 0, 1, 2, 2, 49, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-14-1', 0, 'D2-049-14-1', 0, 1, 2, 2, 49, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-14-2', 0, 'D2-049-14-2', 0, 1, 2, 2, 49, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-15-1', 0, 'D2-049-15-1', 0, 1, 2, 2, 49, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-049-15-2', 0, 'D2-049-15-2', 0, 1, 2, 2, 49, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-01-1', 0, 'D2-050-01-1', 0, 1, 2, 2, 50, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-01-2', 0, 'D2-050-01-2', 0, 1, 2, 2, 50, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-02-1', 0, 'D2-050-02-1', 0, 1, 2, 2, 50, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-02-2', 0, 'D2-050-02-2', 0, 1, 2, 2, 50, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-03-1', 0, 'D2-050-03-1', 0, 1, 2, 2, 50, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-03-2', 0, 'D2-050-03-2', 0, 1, 2, 2, 50, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-04-1', 0, 'D2-050-04-1', 0, 1, 2, 2, 50, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-04-2', 0, 'D2-050-04-2', 0, 1, 2, 2, 50, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-05-1', 0, 'D2-050-05-1', 0, 1, 2, 2, 50, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-05-2', 0, 'D2-050-05-2', 0, 1, 2, 2, 50, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-06-1', 0, 'D2-050-06-1', 0, 1, 2, 2, 50, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-06-2', 0, 'D2-050-06-2', 0, 1, 2, 2, 50, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-07-1', 0, 'D2-050-07-1', 0, 1, 2, 2, 50, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-07-2', 0, 'D2-050-07-2', 0, 1, 2, 2, 50, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-08-1', 0, 'D2-050-08-1', 0, 1, 2, 2, 50, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-08-2', 0, 'D2-050-08-2', 0, 1, 2, 2, 50, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-09-1', 0, 'D2-050-09-1', 0, 1, 2, 2, 50, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-09-2', 0, 'D2-050-09-2', 0, 1, 2, 2, 50, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-10-1', 0, 'D2-050-10-1', 0, 1, 2, 2, 50, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-10-2', 0, 'D2-050-10-2', 0, 1, 2, 2, 50, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-11-1', 0, 'D2-050-11-1', 0, 1, 2, 2, 50, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-11-2', 0, 'D2-050-11-2', 0, 1, 2, 2, 50, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-12-1', 0, 'D2-050-12-1', 0, 1, 2, 2, 50, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-12-2', 0, 'D2-050-12-2', 0, 1, 2, 2, 50, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-13-1', 0, 'D2-050-13-1', 0, 1, 2, 2, 50, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-13-2', 0, 'D2-050-13-2', 0, 1, 2, 2, 50, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-14-1', 0, 'D2-050-14-1', 0, 1, 2, 2, 50, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-14-2', 0, 'D2-050-14-2', 0, 1, 2, 2, 50, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-15-1', 0, 'D2-050-15-1', 0, 1, 2, 2, 50, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-050-15-2', 0, 'D2-050-15-2', 0, 1, 2, 2, 50, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-01-1', 0, 'D2-051-01-1', 0, 1, 2, 2, 51, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-01-2', 0, 'D2-051-01-2', 0, 1, 2, 2, 51, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-02-1', 0, 'D2-051-02-1', 0, 1, 2, 2, 51, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-02-2', 0, 'D2-051-02-2', 0, 1, 2, 2, 51, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-03-1', 0, 'D2-051-03-1', 0, 1, 2, 2, 51, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-03-2', 0, 'D2-051-03-2', 0, 1, 2, 2, 51, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-04-1', 0, 'D2-051-04-1', 0, 1, 2, 2, 51, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-04-2', 0, 'D2-051-04-2', 0, 1, 2, 2, 51, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-05-1', 0, 'D2-051-05-1', 0, 1, 2, 2, 51, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-05-2', 0, 'D2-051-05-2', 0, 1, 2, 2, 51, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-06-1', 0, 'D2-051-06-1', 0, 1, 2, 2, 51, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-06-2', 0, 'D2-051-06-2', 0, 1, 2, 2, 51, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-07-1', 0, 'D2-051-07-1', 0, 1, 2, 2, 51, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-07-2', 0, 'D2-051-07-2', 0, 1, 2, 2, 51, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-08-1', 0, 'D2-051-08-1', 0, 1, 2, 2, 51, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-08-2', 0, 'D2-051-08-2', 0, 1, 2, 2, 51, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-09-1', 0, 'D2-051-09-1', 0, 1, 2, 2, 51, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-09-2', 0, 'D2-051-09-2', 0, 1, 2, 2, 51, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-10-1', 0, 'D2-051-10-1', 0, 1, 2, 2, 51, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-10-2', 0, 'D2-051-10-2', 0, 1, 2, 2, 51, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-11-1', 0, 'D2-051-11-1', 0, 1, 2, 2, 51, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-11-2', 0, 'D2-051-11-2', 0, 1, 2, 2, 51, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-12-1', 0, 'D2-051-12-1', 0, 1, 2, 2, 51, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-12-2', 0, 'D2-051-12-2', 0, 1, 2, 2, 51, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-13-1', 0, 'D2-051-13-1', 0, 1, 2, 2, 51, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-13-2', 0, 'D2-051-13-2', 0, 1, 2, 2, 51, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-14-1', 0, 'D2-051-14-1', 0, 1, 2, 2, 51, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-14-2', 0, 'D2-051-14-2', 0, 1, 2, 2, 51, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-15-1', 0, 'D2-051-15-1', 0, 1, 2, 2, 51, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-051-15-2', 0, 'D2-051-15-2', 0, 1, 2, 2, 51, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-01-1', 0, 'D2-052-01-1', 0, 1, 2, 2, 52, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-01-2', 0, 'D2-052-01-2', 0, 1, 2, 2, 52, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-02-1', 0, 'D2-052-02-1', 0, 1, 2, 2, 52, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-02-2', 0, 'D2-052-02-2', 0, 1, 2, 2, 52, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-03-1', 0, 'D2-052-03-1', 0, 1, 2, 2, 52, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-03-2', 0, 'D2-052-03-2', 0, 1, 2, 2, 52, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-04-1', 0, 'D2-052-04-1', 0, 1, 2, 2, 52, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-04-2', 0, 'D2-052-04-2', 0, 1, 2, 2, 52, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-05-1', 0, 'D2-052-05-1', 0, 1, 2, 2, 52, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-05-2', 0, 'D2-052-05-2', 0, 1, 2, 2, 52, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-06-1', 0, 'D2-052-06-1', 0, 1, 2, 2, 52, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-06-2', 0, 'D2-052-06-2', 0, 1, 2, 2, 52, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-07-1', 0, 'D2-052-07-1', 0, 1, 2, 2, 52, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-07-2', 0, 'D2-052-07-2', 0, 1, 2, 2, 52, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-08-1', 0, 'D2-052-08-1', 0, 1, 2, 2, 52, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-08-2', 0, 'D2-052-08-2', 0, 1, 2, 2, 52, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-09-1', 0, 'D2-052-09-1', 0, 1, 2, 2, 52, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-09-2', 0, 'D2-052-09-2', 0, 1, 2, 2, 52, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-10-1', 0, 'D2-052-10-1', 0, 1, 2, 2, 52, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-10-2', 0, 'D2-052-10-2', 0, 1, 2, 2, 52, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-11-1', 0, 'D2-052-11-1', 0, 1, 2, 2, 52, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-11-2', 0, 'D2-052-11-2', 0, 1, 2, 2, 52, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-12-1', 0, 'D2-052-12-1', 0, 1, 2, 2, 52, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-12-2', 0, 'D2-052-12-2', 0, 1, 2, 2, 52, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-13-1', 0, 'D2-052-13-1', 0, 1, 2, 2, 52, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-13-2', 0, 'D2-052-13-2', 0, 1, 2, 2, 52, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-14-1', 0, 'D2-052-14-1', 0, 1, 2, 2, 52, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-14-2', 0, 'D2-052-14-2', 0, 1, 2, 2, 52, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-15-1', 0, 'D2-052-15-1', 0, 1, 2, 2, 52, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-052-15-2', 0, 'D2-052-15-2', 0, 1, 2, 2, 52, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-01-1', 0, 'D2-053-01-1', 0, 1, 2, 2, 53, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-01-2', 0, 'D2-053-01-2', 0, 1, 2, 2, 53, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-02-1', 0, 'D2-053-02-1', 0, 1, 2, 2, 53, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-02-2', 0, 'D2-053-02-2', 0, 1, 2, 2, 53, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-03-1', 0, 'D2-053-03-1', 0, 1, 2, 2, 53, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-03-2', 0, 'D2-053-03-2', 0, 1, 2, 2, 53, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-04-1', 0, 'D2-053-04-1', 0, 1, 2, 2, 53, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-04-2', 0, 'D2-053-04-2', 0, 1, 2, 2, 53, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-05-1', 0, 'D2-053-05-1', 0, 1, 2, 2, 53, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-05-2', 0, 'D2-053-05-2', 0, 1, 2, 2, 53, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-06-1', 0, 'D2-053-06-1', 0, 1, 2, 2, 53, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-06-2', 0, 'D2-053-06-2', 0, 1, 2, 2, 53, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-07-1', 0, 'D2-053-07-1', 0, 1, 2, 2, 53, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-07-2', 0, 'D2-053-07-2', 0, 1, 2, 2, 53, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-08-1', 0, 'D2-053-08-1', 0, 1, 2, 2, 53, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-08-2', 0, 'D2-053-08-2', 0, 1, 2, 2, 53, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-09-1', 0, 'D2-053-09-1', 0, 1, 2, 2, 53, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-09-2', 0, 'D2-053-09-2', 0, 1, 2, 2, 53, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-10-1', 0, 'D2-053-10-1', 0, 1, 2, 2, 53, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-10-2', 0, 'D2-053-10-2', 0, 1, 2, 2, 53, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-11-1', 0, 'D2-053-11-1', 0, 1, 2, 2, 53, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-11-2', 0, 'D2-053-11-2', 0, 1, 2, 2, 53, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-12-1', 0, 'D2-053-12-1', 0, 1, 2, 2, 53, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-12-2', 0, 'D2-053-12-2', 0, 1, 2, 2, 53, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-13-1', 0, 'D2-053-13-1', 0, 1, 2, 2, 53, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-13-2', 0, 'D2-053-13-2', 0, 1, 2, 2, 53, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-14-1', 0, 'D2-053-14-1', 0, 1, 2, 2, 53, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-14-2', 0, 'D2-053-14-2', 0, 1, 2, 2, 53, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-15-1', 0, 'D2-053-15-1', 0, 1, 2, 2, 53, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-053-15-2', 0, 'D2-053-15-2', 0, 1, 2, 2, 53, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-01-1', 0, 'D2-054-01-1', 0, 1, 2, 2, 54, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-01-2', 0, 'D2-054-01-2', 0, 1, 2, 2, 54, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-02-1', 0, 'D2-054-02-1', 0, 1, 2, 2, 54, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-02-2', 0, 'D2-054-02-2', 0, 1, 2, 2, 54, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-03-1', 0, 'D2-054-03-1', 0, 1, 2, 2, 54, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-03-2', 0, 'D2-054-03-2', 0, 1, 2, 2, 54, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-04-1', 0, 'D2-054-04-1', 0, 1, 2, 2, 54, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-04-2', 0, 'D2-054-04-2', 0, 1, 2, 2, 54, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-05-1', 0, 'D2-054-05-1', 0, 1, 2, 2, 54, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-05-2', 0, 'D2-054-05-2', 0, 1, 2, 2, 54, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-06-1', 0, 'D2-054-06-1', 0, 1, 2, 2, 54, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-06-2', 0, 'D2-054-06-2', 0, 1, 2, 2, 54, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-07-1', 0, 'D2-054-07-1', 0, 1, 2, 2, 54, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-07-2', 0, 'D2-054-07-2', 0, 1, 2, 2, 54, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-08-1', 0, 'D2-054-08-1', 0, 1, 2, 2, 54, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-08-2', 0, 'D2-054-08-2', 0, 1, 2, 2, 54, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-09-1', 0, 'D2-054-09-1', 0, 1, 2, 2, 54, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-09-2', 0, 'D2-054-09-2', 0, 1, 2, 2, 54, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-10-1', 0, 'D2-054-10-1', 0, 1, 2, 2, 54, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-10-2', 0, 'D2-054-10-2', 0, 1, 2, 2, 54, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-11-1', 0, 'D2-054-11-1', 0, 1, 2, 2, 54, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-11-2', 0, 'D2-054-11-2', 0, 1, 2, 2, 54, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-12-1', 0, 'D2-054-12-1', 0, 1, 2, 2, 54, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-12-2', 0, 'D2-054-12-2', 0, 1, 2, 2, 54, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-13-1', 0, 'D2-054-13-1', 0, 1, 2, 2, 54, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-13-2', 0, 'D2-054-13-2', 0, 1, 2, 2, 54, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-14-1', 0, 'D2-054-14-1', 0, 1, 2, 2, 54, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-14-2', 0, 'D2-054-14-2', 0, 1, 2, 2, 54, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-15-1', 0, 'D2-054-15-1', 0, 1, 2, 2, 54, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-054-15-2', 0, 'D2-054-15-2', 0, 1, 2, 2, 54, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-01-1', 0, 'D2-055-01-1', 0, 1, 2, 2, 55, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-01-2', 0, 'D2-055-01-2', 0, 1, 2, 2, 55, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-02-1', 0, 'D2-055-02-1', 0, 1, 2, 2, 55, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-02-2', 0, 'D2-055-02-2', 0, 1, 2, 2, 55, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-03-1', 0, 'D2-055-03-1', 0, 1, 2, 2, 55, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-03-2', 0, 'D2-055-03-2', 0, 1, 2, 2, 55, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-04-1', 0, 'D2-055-04-1', 0, 1, 2, 2, 55, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-04-2', 0, 'D2-055-04-2', 0, 1, 2, 2, 55, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-05-1', 0, 'D2-055-05-1', 0, 1, 2, 2, 55, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-05-2', 0, 'D2-055-05-2', 0, 1, 2, 2, 55, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-06-1', 0, 'D2-055-06-1', 0, 1, 2, 2, 55, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-06-2', 0, 'D2-055-06-2', 0, 1, 2, 2, 55, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-07-1', 0, 'D2-055-07-1', 0, 1, 2, 2, 55, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-07-2', 0, 'D2-055-07-2', 0, 1, 2, 2, 55, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-08-1', 0, 'D2-055-08-1', 0, 1, 2, 2, 55, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-08-2', 0, 'D2-055-08-2', 0, 1, 2, 2, 55, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-09-1', 0, 'D2-055-09-1', 0, 1, 2, 2, 55, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-09-2', 0, 'D2-055-09-2', 0, 1, 2, 2, 55, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-10-1', 0, 'D2-055-10-1', 0, 1, 2, 2, 55, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-10-2', 0, 'D2-055-10-2', 0, 1, 2, 2, 55, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-11-1', 0, 'D2-055-11-1', 0, 1, 2, 2, 55, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-11-2', 0, 'D2-055-11-2', 0, 1, 2, 2, 55, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-12-1', 0, 'D2-055-12-1', 0, 1, 2, 2, 55, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-12-2', 0, 'D2-055-12-2', 0, 1, 2, 2, 55, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-13-1', 0, 'D2-055-13-1', 0, 1, 2, 2, 55, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-13-2', 0, 'D2-055-13-2', 0, 1, 2, 2, 55, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-14-1', 0, 'D2-055-14-1', 0, 1, 2, 2, 55, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-14-2', 0, 'D2-055-14-2', 0, 1, 2, 2, 55, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-15-1', 0, 'D2-055-15-1', 0, 1, 2, 2, 55, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-055-15-2', 0, 'D2-055-15-2', 0, 1, 2, 2, 55, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-01-1', 0, 'D2-056-01-1', 0, 1, 2, 2, 56, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-01-2', 0, 'D2-056-01-2', 0, 1, 2, 2, 56, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-02-1', 0, 'D2-056-02-1', 0, 1, 2, 2, 56, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-02-2', 0, 'D2-056-02-2', 0, 1, 2, 2, 56, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-03-1', 0, 'D2-056-03-1', 0, 1, 2, 2, 56, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-03-2', 0, 'D2-056-03-2', 0, 1, 2, 2, 56, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-04-1', 0, 'D2-056-04-1', 0, 1, 2, 2, 56, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-04-2', 0, 'D2-056-04-2', 0, 1, 2, 2, 56, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-05-1', 0, 'D2-056-05-1', 0, 1, 2, 2, 56, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-05-2', 0, 'D2-056-05-2', 0, 1, 2, 2, 56, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-06-1', 0, 'D2-056-06-1', 0, 1, 2, 2, 56, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-06-2', 0, 'D2-056-06-2', 0, 1, 2, 2, 56, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-07-1', 0, 'D2-056-07-1', 0, 1, 2, 2, 56, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-07-2', 0, 'D2-056-07-2', 0, 1, 2, 2, 56, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-08-1', 0, 'D2-056-08-1', 0, 1, 2, 2, 56, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-08-2', 0, 'D2-056-08-2', 0, 1, 2, 2, 56, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-09-1', 0, 'D2-056-09-1', 0, 1, 2, 2, 56, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-09-2', 0, 'D2-056-09-2', 0, 1, 2, 2, 56, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-10-1', 0, 'D2-056-10-1', 0, 1, 2, 2, 56, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-10-2', 0, 'D2-056-10-2', 0, 1, 2, 2, 56, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-11-1', 0, 'D2-056-11-1', 0, 1, 2, 2, 56, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-11-2', 0, 'D2-056-11-2', 0, 1, 2, 2, 56, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-12-1', 0, 'D2-056-12-1', 0, 1, 2, 2, 56, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-12-2', 0, 'D2-056-12-2', 0, 1, 2, 2, 56, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-13-1', 0, 'D2-056-13-1', 0, 1, 2, 2, 56, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-13-2', 0, 'D2-056-13-2', 0, 1, 2, 2, 56, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-14-1', 0, 'D2-056-14-1', 0, 1, 2, 2, 56, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-14-2', 0, 'D2-056-14-2', 0, 1, 2, 2, 56, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-15-1', 0, 'D2-056-15-1', 0, 1, 2, 2, 56, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-056-15-2', 0, 'D2-056-15-2', 0, 1, 2, 2, 56, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-01-1', 0, 'D2-057-01-1', 0, 1, 2, 2, 57, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-01-2', 0, 'D2-057-01-2', 0, 1, 2, 2, 57, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-02-1', 0, 'D2-057-02-1', 0, 1, 2, 2, 57, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-02-2', 0, 'D2-057-02-2', 0, 1, 2, 2, 57, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-03-1', 0, 'D2-057-03-1', 0, 1, 2, 2, 57, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-03-2', 0, 'D2-057-03-2', 0, 1, 2, 2, 57, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-04-1', 0, 'D2-057-04-1', 0, 1, 2, 2, 57, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-04-2', 0, 'D2-057-04-2', 0, 1, 2, 2, 57, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-05-1', 0, 'D2-057-05-1', 0, 1, 2, 2, 57, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-05-2', 0, 'D2-057-05-2', 0, 1, 2, 2, 57, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-06-1', 0, 'D2-057-06-1', 0, 1, 2, 2, 57, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-06-2', 0, 'D2-057-06-2', 0, 1, 2, 2, 57, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-07-1', 0, 'D2-057-07-1', 0, 1, 2, 2, 57, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-07-2', 0, 'D2-057-07-2', 0, 1, 2, 2, 57, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-08-1', 0, 'D2-057-08-1', 0, 1, 2, 2, 57, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-08-2', 0, 'D2-057-08-2', 0, 1, 2, 2, 57, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-09-1', 0, 'D2-057-09-1', 0, 1, 2, 2, 57, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-09-2', 0, 'D2-057-09-2', 0, 1, 2, 2, 57, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-10-1', 0, 'D2-057-10-1', 0, 1, 2, 2, 57, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-10-2', 0, 'D2-057-10-2', 0, 1, 2, 2, 57, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-11-1', 0, 'D2-057-11-1', 0, 1, 2, 2, 57, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-11-2', 0, 'D2-057-11-2', 0, 1, 2, 2, 57, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-12-1', 0, 'D2-057-12-1', 0, 1, 2, 2, 57, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-12-2', 0, 'D2-057-12-2', 0, 1, 2, 2, 57, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-13-1', 0, 'D2-057-13-1', 0, 1, 2, 2, 57, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-13-2', 0, 'D2-057-13-2', 0, 1, 2, 2, 57, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-14-1', 0, 'D2-057-14-1', 0, 1, 2, 2, 57, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-14-2', 0, 'D2-057-14-2', 0, 1, 2, 2, 57, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-15-1', 0, 'D2-057-15-1', 0, 1, 2, 2, 57, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-057-15-2', 0, 'D2-057-15-2', 0, 1, 2, 2, 57, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-01-1', 0, 'D2-058-01-1', 0, 1, 2, 2, 58, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-01-2', 0, 'D2-058-01-2', 0, 1, 2, 2, 58, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-02-1', 0, 'D2-058-02-1', 0, 1, 2, 2, 58, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-02-2', 0, 'D2-058-02-2', 0, 1, 2, 2, 58, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-03-1', 0, 'D2-058-03-1', 0, 1, 2, 2, 58, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-03-2', 0, 'D2-058-03-2', 0, 1, 2, 2, 58, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-04-1', 0, 'D2-058-04-1', 0, 1, 2, 2, 58, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-04-2', 0, 'D2-058-04-2', 0, 1, 2, 2, 58, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-05-1', 0, 'D2-058-05-1', 0, 1, 2, 2, 58, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-05-2', 0, 'D2-058-05-2', 0, 1, 2, 2, 58, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-06-1', 0, 'D2-058-06-1', 0, 1, 2, 2, 58, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-06-2', 0, 'D2-058-06-2', 0, 1, 2, 2, 58, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-07-1', 0, 'D2-058-07-1', 0, 1, 2, 2, 58, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-07-2', 0, 'D2-058-07-2', 0, 1, 2, 2, 58, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-08-1', 0, 'D2-058-08-1', 0, 1, 2, 2, 58, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-08-2', 0, 'D2-058-08-2', 0, 1, 2, 2, 58, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-09-1', 0, 'D2-058-09-1', 0, 1, 2, 2, 58, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-09-2', 0, 'D2-058-09-2', 0, 1, 2, 2, 58, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-10-1', 0, 'D2-058-10-1', 0, 1, 2, 2, 58, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-10-2', 0, 'D2-058-10-2', 0, 1, 2, 2, 58, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-11-1', 0, 'D2-058-11-1', 0, 1, 2, 2, 58, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-11-2', 0, 'D2-058-11-2', 0, 1, 2, 2, 58, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-12-1', 0, 'D2-058-12-1', 0, 1, 2, 2, 58, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-12-2', 0, 'D2-058-12-2', 0, 1, 2, 2, 58, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-13-1', 0, 'D2-058-13-1', 0, 1, 2, 2, 58, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-13-2', 0, 'D2-058-13-2', 0, 1, 2, 2, 58, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-14-1', 0, 'D2-058-14-1', 0, 1, 2, 2, 58, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-14-2', 0, 'D2-058-14-2', 0, 1, 2, 2, 58, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-15-1', 0, 'D2-058-15-1', 0, 1, 2, 2, 58, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-058-15-2', 0, 'D2-058-15-2', 0, 1, 2, 2, 58, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-01-1', 0, 'D2-059-01-1', 0, 1, 2, 2, 59, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-01-2', 0, 'D2-059-01-2', 0, 1, 2, 2, 59, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-02-1', 0, 'D2-059-02-1', 0, 1, 2, 2, 59, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-02-2', 0, 'D2-059-02-2', 0, 1, 2, 2, 59, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-03-1', 0, 'D2-059-03-1', 0, 1, 2, 2, 59, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-03-2', 0, 'D2-059-03-2', 0, 1, 2, 2, 59, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-04-1', 0, 'D2-059-04-1', 0, 1, 2, 2, 59, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-04-2', 0, 'D2-059-04-2', 0, 1, 2, 2, 59, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-05-1', 0, 'D2-059-05-1', 0, 1, 2, 2, 59, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-05-2', 0, 'D2-059-05-2', 0, 1, 2, 2, 59, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-06-1', 0, 'D2-059-06-1', 0, 1, 2, 2, 59, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-06-2', 0, 'D2-059-06-2', 0, 1, 2, 2, 59, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-07-1', 0, 'D2-059-07-1', 0, 1, 2, 2, 59, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-07-2', 0, 'D2-059-07-2', 0, 1, 2, 2, 59, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-08-1', 0, 'D2-059-08-1', 0, 1, 2, 2, 59, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-08-2', 0, 'D2-059-08-2', 0, 1, 2, 2, 59, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-09-1', 0, 'D2-059-09-1', 0, 1, 2, 2, 59, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-09-2', 0, 'D2-059-09-2', 0, 1, 2, 2, 59, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-10-1', 0, 'D2-059-10-1', 0, 1, 2, 2, 59, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-10-2', 0, 'D2-059-10-2', 0, 1, 2, 2, 59, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-11-1', 0, 'D2-059-11-1', 0, 1, 2, 2, 59, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-11-2', 0, 'D2-059-11-2', 0, 1, 2, 2, 59, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-12-1', 0, 'D2-059-12-1', 0, 1, 2, 2, 59, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-12-2', 0, 'D2-059-12-2', 0, 1, 2, 2, 59, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-13-1', 0, 'D2-059-13-1', 0, 1, 2, 2, 59, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-13-2', 0, 'D2-059-13-2', 0, 1, 2, 2, 59, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-14-1', 0, 'D2-059-14-1', 0, 1, 2, 2, 59, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-14-2', 0, 'D2-059-14-2', 0, 1, 2, 2, 59, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-15-1', 0, 'D2-059-15-1', 0, 1, 2, 2, 59, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-059-15-2', 0, 'D2-059-15-2', 0, 1, 2, 2, 59, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-01-1', 0, 'D2-060-01-1', 0, 1, 2, 2, 60, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-01-2', 0, 'D2-060-01-2', 0, 1, 2, 2, 60, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-02-1', 0, 'D2-060-02-1', 0, 1, 2, 2, 60, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-02-2', 0, 'D2-060-02-2', 0, 1, 2, 2, 60, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-03-1', 0, 'D2-060-03-1', 0, 1, 2, 2, 60, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-03-2', 0, 'D2-060-03-2', 0, 1, 2, 2, 60, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-04-1', 0, 'D2-060-04-1', 0, 1, 2, 2, 60, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-04-2', 0, 'D2-060-04-2', 0, 1, 2, 2, 60, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-05-1', 0, 'D2-060-05-1', 0, 1, 2, 2, 60, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-05-2', 0, 'D2-060-05-2', 0, 1, 2, 2, 60, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-06-1', 0, 'D2-060-06-1', 0, 1, 2, 2, 60, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-06-2', 0, 'D2-060-06-2', 0, 1, 2, 2, 60, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-07-1', 0, 'D2-060-07-1', 0, 1, 2, 2, 60, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-07-2', 0, 'D2-060-07-2', 0, 1, 2, 2, 60, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-08-1', 0, 'D2-060-08-1', 0, 1, 2, 2, 60, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-08-2', 0, 'D2-060-08-2', 0, 1, 2, 2, 60, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-09-1', 0, 'D2-060-09-1', 0, 1, 2, 2, 60, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-09-2', 0, 'D2-060-09-2', 0, 1, 2, 2, 60, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-10-1', 0, 'D2-060-10-1', 0, 1, 2, 2, 60, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-10-2', 0, 'D2-060-10-2', 0, 1, 2, 2, 60, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-11-1', 0, 'D2-060-11-1', 0, 1, 2, 2, 60, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-11-2', 0, 'D2-060-11-2', 0, 1, 2, 2, 60, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-12-1', 0, 'D2-060-12-1', 0, 1, 2, 2, 60, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-12-2', 0, 'D2-060-12-2', 0, 1, 2, 2, 60, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-13-1', 0, 'D2-060-13-1', 0, 1, 2, 2, 60, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-13-2', 0, 'D2-060-13-2', 0, 1, 2, 2, 60, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-14-1', 0, 'D2-060-14-1', 0, 1, 2, 2, 60, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-14-2', 0, 'D2-060-14-2', 0, 1, 2, 2, 60, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-15-1', 0, 'D2-060-15-1', 0, 1, 2, 2, 60, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-060-15-2', 0, 'D2-060-15-2', 0, 1, 2, 2, 60, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-01-1', 0, 'D2-061-01-1', 0, 1, 2, 2, 61, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-01-2', 0, 'D2-061-01-2', 0, 1, 2, 2, 61, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-02-1', 0, 'D2-061-02-1', 0, 1, 2, 2, 61, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-02-2', 0, 'D2-061-02-2', 0, 1, 2, 2, 61, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-03-1', 0, 'D2-061-03-1', 0, 1, 2, 2, 61, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-03-2', 0, 'D2-061-03-2', 0, 1, 2, 2, 61, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-04-1', 0, 'D2-061-04-1', 0, 1, 2, 2, 61, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-04-2', 0, 'D2-061-04-2', 0, 1, 2, 2, 61, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-05-1', 0, 'D2-061-05-1', 0, 1, 2, 2, 61, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-05-2', 0, 'D2-061-05-2', 0, 1, 2, 2, 61, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-06-1', 0, 'D2-061-06-1', 0, 1, 2, 2, 61, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-06-2', 0, 'D2-061-06-2', 0, 1, 2, 2, 61, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-07-1', 0, 'D2-061-07-1', 0, 1, 2, 2, 61, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-07-2', 0, 'D2-061-07-2', 0, 1, 2, 2, 61, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-08-1', 0, 'D2-061-08-1', 0, 1, 2, 2, 61, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-08-2', 0, 'D2-061-08-2', 0, 1, 2, 2, 61, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-09-1', 0, 'D2-061-09-1', 0, 1, 2, 2, 61, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-09-2', 0, 'D2-061-09-2', 0, 1, 2, 2, 61, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-10-1', 0, 'D2-061-10-1', 0, 1, 2, 2, 61, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-10-2', 0, 'D2-061-10-2', 0, 1, 2, 2, 61, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-11-1', 0, 'D2-061-11-1', 0, 1, 2, 2, 61, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-11-2', 0, 'D2-061-11-2', 0, 1, 2, 2, 61, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-12-1', 0, 'D2-061-12-1', 0, 1, 2, 2, 61, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-12-2', 0, 'D2-061-12-2', 0, 1, 2, 2, 61, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-13-1', 0, 'D2-061-13-1', 0, 1, 2, 2, 61, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-13-2', 0, 'D2-061-13-2', 0, 1, 2, 2, 61, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-14-1', 0, 'D2-061-14-1', 0, 1, 2, 2, 61, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-14-2', 0, 'D2-061-14-2', 0, 1, 2, 2, 61, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-15-1', 0, 'D2-061-15-1', 0, 1, 2, 2, 61, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-061-15-2', 0, 'D2-061-15-2', 0, 1, 2, 2, 61, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-01-1', 0, 'D2-062-01-1', 0, 1, 2, 2, 62, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-01-2', 0, 'D2-062-01-2', 0, 1, 2, 2, 62, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-02-1', 0, 'D2-062-02-1', 0, 1, 2, 2, 62, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-02-2', 0, 'D2-062-02-2', 0, 1, 2, 2, 62, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-03-1', 0, 'D2-062-03-1', 0, 1, 2, 2, 62, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-03-2', 0, 'D2-062-03-2', 0, 1, 2, 2, 62, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-04-1', 0, 'D2-062-04-1', 0, 1, 2, 2, 62, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-04-2', 0, 'D2-062-04-2', 0, 1, 2, 2, 62, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-05-1', 0, 'D2-062-05-1', 0, 1, 2, 2, 62, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-05-2', 0, 'D2-062-05-2', 0, 1, 2, 2, 62, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-06-1', 0, 'D2-062-06-1', 0, 1, 2, 2, 62, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-06-2', 0, 'D2-062-06-2', 0, 1, 2, 2, 62, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-07-1', 0, 'D2-062-07-1', 0, 1, 2, 2, 62, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-07-2', 0, 'D2-062-07-2', 0, 1, 2, 2, 62, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-08-1', 0, 'D2-062-08-1', 0, 1, 2, 2, 62, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-08-2', 0, 'D2-062-08-2', 0, 1, 2, 2, 62, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-09-1', 0, 'D2-062-09-1', 0, 1, 2, 2, 62, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-09-2', 0, 'D2-062-09-2', 0, 1, 2, 2, 62, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-10-1', 0, 'D2-062-10-1', 0, 1, 2, 2, 62, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-10-2', 0, 'D2-062-10-2', 0, 1, 2, 2, 62, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-11-1', 0, 'D2-062-11-1', 0, 1, 2, 2, 62, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-11-2', 0, 'D2-062-11-2', 0, 1, 2, 2, 62, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-12-1', 0, 'D2-062-12-1', 0, 1, 2, 2, 62, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-12-2', 0, 'D2-062-12-2', 0, 1, 2, 2, 62, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-13-1', 0, 'D2-062-13-1', 0, 1, 2, 2, 62, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-13-2', 0, 'D2-062-13-2', 0, 1, 2, 2, 62, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-14-1', 0, 'D2-062-14-1', 0, 1, 2, 2, 62, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-14-2', 0, 'D2-062-14-2', 0, 1, 2, 2, 62, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-15-1', 0, 'D2-062-15-1', 0, 1, 2, 2, 62, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-062-15-2', 0, 'D2-062-15-2', 0, 1, 2, 2, 62, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-01-1', 0, 'D2-063-01-1', 0, 1, 2, 2, 63, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-01-2', 0, 'D2-063-01-2', 0, 1, 2, 2, 63, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-02-1', 0, 'D2-063-02-1', 0, 1, 2, 2, 63, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-02-2', 0, 'D2-063-02-2', 0, 1, 2, 2, 63, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-03-1', 0, 'D2-063-03-1', 0, 1, 2, 2, 63, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-03-2', 0, 'D2-063-03-2', 0, 1, 2, 2, 63, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-04-1', 0, 'D2-063-04-1', 0, 1, 2, 2, 63, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-04-2', 0, 'D2-063-04-2', 0, 1, 2, 2, 63, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-05-1', 0, 'D2-063-05-1', 0, 1, 2, 2, 63, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-05-2', 0, 'D2-063-05-2', 0, 1, 2, 2, 63, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-06-1', 0, 'D2-063-06-1', 0, 1, 2, 2, 63, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-06-2', 0, 'D2-063-06-2', 0, 1, 2, 2, 63, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-07-1', 0, 'D2-063-07-1', 0, 1, 2, 2, 63, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-07-2', 0, 'D2-063-07-2', 0, 1, 2, 2, 63, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-08-1', 0, 'D2-063-08-1', 0, 1, 2, 2, 63, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-08-2', 0, 'D2-063-08-2', 0, 1, 2, 2, 63, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-09-1', 0, 'D2-063-09-1', 0, 1, 2, 2, 63, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-09-2', 0, 'D2-063-09-2', 0, 1, 2, 2, 63, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-10-1', 0, 'D2-063-10-1', 0, 1, 2, 2, 63, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-10-2', 0, 'D2-063-10-2', 0, 1, 2, 2, 63, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-11-1', 0, 'D2-063-11-1', 0, 1, 2, 2, 63, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-11-2', 0, 'D2-063-11-2', 0, 1, 2, 2, 63, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-12-1', 0, 'D2-063-12-1', 0, 1, 2, 2, 63, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-12-2', 0, 'D2-063-12-2', 0, 1, 2, 2, 63, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-13-1', 0, 'D2-063-13-1', 0, 1, 2, 2, 63, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-13-2', 0, 'D2-063-13-2', 0, 1, 2, 2, 63, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-14-1', 0, 'D2-063-14-1', 0, 1, 2, 2, 63, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-14-2', 0, 'D2-063-14-2', 0, 1, 2, 2, 63, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-15-1', 0, 'D2-063-15-1', 0, 1, 2, 2, 63, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-063-15-2', 0, 'D2-063-15-2', 0, 1, 2, 2, 63, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-01-1', 0, 'D2-064-01-1', 0, 1, 2, 2, 64, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-01-2', 0, 'D2-064-01-2', 0, 1, 2, 2, 64, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-02-1', 0, 'D2-064-02-1', 0, 1, 2, 2, 64, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-02-2', 0, 'D2-064-02-2', 0, 1, 2, 2, 64, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-03-1', 0, 'D2-064-03-1', 0, 1, 2, 2, 64, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-03-2', 0, 'D2-064-03-2', 0, 1, 2, 2, 64, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-04-1', 0, 'D2-064-04-1', 0, 1, 2, 2, 64, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-04-2', 0, 'D2-064-04-2', 0, 1, 2, 2, 64, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-05-1', 0, 'D2-064-05-1', 0, 1, 2, 2, 64, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-05-2', 0, 'D2-064-05-2', 0, 1, 2, 2, 64, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-06-1', 0, 'D2-064-06-1', 0, 1, 2, 2, 64, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-06-2', 0, 'D2-064-06-2', 0, 1, 2, 2, 64, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-07-1', 0, 'D2-064-07-1', 0, 1, 2, 2, 64, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-07-2', 0, 'D2-064-07-2', 0, 1, 2, 2, 64, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-08-1', 0, 'D2-064-08-1', 0, 1, 2, 2, 64, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-08-2', 0, 'D2-064-08-2', 0, 1, 2, 2, 64, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-09-1', 0, 'D2-064-09-1', 0, 1, 2, 2, 64, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-09-2', 0, 'D2-064-09-2', 0, 1, 2, 2, 64, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-10-1', 0, 'D2-064-10-1', 0, 1, 2, 2, 64, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-10-2', 0, 'D2-064-10-2', 0, 1, 2, 2, 64, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-11-1', 0, 'D2-064-11-1', 0, 1, 2, 2, 64, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-11-2', 0, 'D2-064-11-2', 0, 1, 2, 2, 64, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-12-1', 0, 'D2-064-12-1', 0, 1, 2, 2, 64, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-12-2', 0, 'D2-064-12-2', 0, 1, 2, 2, 64, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-13-1', 0, 'D2-064-13-1', 0, 1, 2, 2, 64, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-13-2', 0, 'D2-064-13-2', 0, 1, 2, 2, 64, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-14-1', 0, 'D2-064-14-1', 0, 1, 2, 2, 64, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-14-2', 0, 'D2-064-14-2', 0, 1, 2, 2, 64, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-15-1', 0, 'D2-064-15-1', 0, 1, 2, 2, 64, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-064-15-2', 0, 'D2-064-15-2', 0, 1, 2, 2, 64, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-01-1', 0, 'D2-065-01-1', 0, 1, 2, 2, 65, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-01-2', 0, 'D2-065-01-2', 0, 1, 2, 2, 65, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-02-1', 0, 'D2-065-02-1', 0, 1, 2, 2, 65, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-02-2', 0, 'D2-065-02-2', 0, 1, 2, 2, 65, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-03-1', 0, 'D2-065-03-1', 0, 1, 2, 2, 65, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-03-2', 0, 'D2-065-03-2', 0, 1, 2, 2, 65, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-04-1', 0, 'D2-065-04-1', 0, 1, 2, 2, 65, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-04-2', 0, 'D2-065-04-2', 0, 1, 2, 2, 65, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-05-1', 0, 'D2-065-05-1', 0, 1, 2, 2, 65, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-05-2', 0, 'D2-065-05-2', 0, 1, 2, 2, 65, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-06-1', 0, 'D2-065-06-1', 0, 1, 2, 2, 65, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-06-2', 0, 'D2-065-06-2', 0, 1, 2, 2, 65, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-07-1', 0, 'D2-065-07-1', 0, 1, 2, 2, 65, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-07-2', 0, 'D2-065-07-2', 0, 1, 2, 2, 65, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-08-1', 0, 'D2-065-08-1', 0, 1, 2, 2, 65, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-08-2', 0, 'D2-065-08-2', 0, 1, 2, 2, 65, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-09-1', 0, 'D2-065-09-1', 0, 1, 2, 2, 65, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-09-2', 0, 'D2-065-09-2', 0, 1, 2, 2, 65, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-10-1', 0, 'D2-065-10-1', 0, 1, 2, 2, 65, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-10-2', 0, 'D2-065-10-2', 0, 1, 2, 2, 65, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-11-1', 0, 'D2-065-11-1', 0, 1, 2, 2, 65, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-11-2', 0, 'D2-065-11-2', 0, 1, 2, 2, 65, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-12-1', 0, 'D2-065-12-1', 0, 1, 2, 2, 65, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-12-2', 0, 'D2-065-12-2', 0, 1, 2, 2, 65, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-13-1', 0, 'D2-065-13-1', 0, 1, 2, 2, 65, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-13-2', 0, 'D2-065-13-2', 0, 1, 2, 2, 65, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-14-1', 0, 'D2-065-14-1', 0, 1, 2, 2, 65, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-14-2', 0, 'D2-065-14-2', 0, 1, 2, 2, 65, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-15-1', 0, 'D2-065-15-1', 0, 1, 2, 2, 65, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-065-15-2', 0, 'D2-065-15-2', 0, 1, 2, 2, 65, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-01-1', 0, 'D2-066-01-1', 0, 1, 2, 2, 66, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-01-2', 0, 'D2-066-01-2', 0, 1, 2, 2, 66, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-02-1', 0, 'D2-066-02-1', 0, 1, 2, 2, 66, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-02-2', 0, 'D2-066-02-2', 0, 1, 2, 2, 66, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-03-1', 0, 'D2-066-03-1', 0, 1, 2, 2, 66, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-03-2', 0, 'D2-066-03-2', 0, 1, 2, 2, 66, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-04-1', 0, 'D2-066-04-1', 0, 1, 2, 2, 66, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-04-2', 0, 'D2-066-04-2', 0, 1, 2, 2, 66, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-05-1', 0, 'D2-066-05-1', 0, 1, 2, 2, 66, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-05-2', 0, 'D2-066-05-2', 0, 1, 2, 2, 66, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-06-1', 0, 'D2-066-06-1', 0, 1, 2, 2, 66, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-06-2', 0, 'D2-066-06-2', 0, 1, 2, 2, 66, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-07-1', 0, 'D2-066-07-1', 0, 1, 2, 2, 66, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-07-2', 0, 'D2-066-07-2', 0, 1, 2, 2, 66, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-08-1', 0, 'D2-066-08-1', 0, 1, 2, 2, 66, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-08-2', 0, 'D2-066-08-2', 0, 1, 2, 2, 66, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-09-1', 0, 'D2-066-09-1', 0, 1, 2, 2, 66, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-09-2', 0, 'D2-066-09-2', 0, 1, 2, 2, 66, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-10-1', 0, 'D2-066-10-1', 0, 1, 2, 2, 66, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-10-2', 0, 'D2-066-10-2', 0, 1, 2, 2, 66, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-11-1', 0, 'D2-066-11-1', 0, 1, 2, 2, 66, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-11-2', 0, 'D2-066-11-2', 0, 1, 2, 2, 66, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-12-1', 0, 'D2-066-12-1', 0, 1, 2, 2, 66, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-12-2', 0, 'D2-066-12-2', 0, 1, 2, 2, 66, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-13-1', 0, 'D2-066-13-1', 0, 1, 2, 2, 66, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-13-2', 0, 'D2-066-13-2', 0, 1, 2, 2, 66, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-14-1', 0, 'D2-066-14-1', 0, 1, 2, 2, 66, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-14-2', 0, 'D2-066-14-2', 0, 1, 2, 2, 66, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-15-1', 0, 'D2-066-15-1', 0, 1, 2, 2, 66, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-066-15-2', 0, 'D2-066-15-2', 0, 1, 2, 2, 66, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-01-1', 0, 'D2-067-01-1', 0, 1, 2, 2, 67, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-01-2', 0, 'D2-067-01-2', 0, 1, 2, 2, 67, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-02-1', 0, 'D2-067-02-1', 0, 1, 2, 2, 67, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-02-2', 0, 'D2-067-02-2', 0, 1, 2, 2, 67, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-03-1', 0, 'D2-067-03-1', 0, 1, 2, 2, 67, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-03-2', 0, 'D2-067-03-2', 0, 1, 2, 2, 67, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-04-1', 0, 'D2-067-04-1', 0, 1, 2, 2, 67, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-04-2', 0, 'D2-067-04-2', 0, 1, 2, 2, 67, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-05-1', 0, 'D2-067-05-1', 0, 1, 2, 2, 67, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-05-2', 0, 'D2-067-05-2', 0, 1, 2, 2, 67, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-06-1', 0, 'D2-067-06-1', 0, 1, 2, 2, 67, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-06-2', 0, 'D2-067-06-2', 0, 1, 2, 2, 67, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-07-1', 0, 'D2-067-07-1', 0, 1, 2, 2, 67, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-07-2', 0, 'D2-067-07-2', 0, 1, 2, 2, 67, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-08-1', 0, 'D2-067-08-1', 0, 1, 2, 2, 67, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-08-2', 0, 'D2-067-08-2', 0, 1, 2, 2, 67, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-09-1', 0, 'D2-067-09-1', 0, 1, 2, 2, 67, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-09-2', 0, 'D2-067-09-2', 0, 1, 2, 2, 67, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-10-1', 0, 'D2-067-10-1', 0, 1, 2, 2, 67, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-10-2', 0, 'D2-067-10-2', 0, 1, 2, 2, 67, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-11-1', 0, 'D2-067-11-1', 0, 1, 2, 2, 67, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-11-2', 0, 'D2-067-11-2', 0, 1, 2, 2, 67, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-12-1', 0, 'D2-067-12-1', 0, 1, 2, 2, 67, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-12-2', 0, 'D2-067-12-2', 0, 1, 2, 2, 67, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-13-1', 0, 'D2-067-13-1', 0, 1, 2, 2, 67, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-13-2', 0, 'D2-067-13-2', 0, 1, 2, 2, 67, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-14-1', 0, 'D2-067-14-1', 0, 1, 2, 2, 67, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-14-2', 0, 'D2-067-14-2', 0, 1, 2, 2, 67, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-15-1', 0, 'D2-067-15-1', 0, 1, 2, 2, 67, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-067-15-2', 0, 'D2-067-15-2', 0, 1, 2, 2, 67, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-01-1', 0, 'D2-068-01-1', 0, 1, 2, 2, 68, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-01-2', 0, 'D2-068-01-2', 0, 1, 2, 2, 68, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-02-1', 0, 'D2-068-02-1', 0, 1, 2, 2, 68, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-02-2', 0, 'D2-068-02-2', 0, 1, 2, 2, 68, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-03-1', 0, 'D2-068-03-1', 0, 1, 2, 2, 68, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-03-2', 0, 'D2-068-03-2', 0, 1, 2, 2, 68, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-04-1', 0, 'D2-068-04-1', 0, 1, 2, 2, 68, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-04-2', 0, 'D2-068-04-2', 0, 1, 2, 2, 68, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-05-1', 0, 'D2-068-05-1', 0, 1, 2, 2, 68, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-05-2', 0, 'D2-068-05-2', 0, 1, 2, 2, 68, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-06-1', 0, 'D2-068-06-1', 0, 1, 2, 2, 68, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-06-2', 0, 'D2-068-06-2', 0, 1, 2, 2, 68, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-07-1', 0, 'D2-068-07-1', 0, 1, 2, 2, 68, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-07-2', 0, 'D2-068-07-2', 0, 1, 2, 2, 68, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-08-1', 0, 'D2-068-08-1', 0, 1, 2, 2, 68, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-08-2', 0, 'D2-068-08-2', 0, 1, 2, 2, 68, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-09-1', 0, 'D2-068-09-1', 0, 1, 2, 2, 68, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-09-2', 0, 'D2-068-09-2', 0, 1, 2, 2, 68, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-10-1', 0, 'D2-068-10-1', 0, 1, 2, 2, 68, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-10-2', 0, 'D2-068-10-2', 0, 1, 2, 2, 68, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-11-1', 0, 'D2-068-11-1', 0, 1, 2, 2, 68, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-11-2', 0, 'D2-068-11-2', 0, 1, 2, 2, 68, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-12-1', 0, 'D2-068-12-1', 0, 1, 2, 2, 68, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-12-2', 0, 'D2-068-12-2', 0, 1, 2, 2, 68, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-13-1', 0, 'D2-068-13-1', 0, 1, 2, 2, 68, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-13-2', 0, 'D2-068-13-2', 0, 1, 2, 2, 68, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-14-1', 0, 'D2-068-14-1', 0, 1, 2, 2, 68, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-14-2', 0, 'D2-068-14-2', 0, 1, 2, 2, 68, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-15-1', 0, 'D2-068-15-1', 0, 1, 2, 2, 68, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-068-15-2', 0, 'D2-068-15-2', 0, 1, 2, 2, 68, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-01-1', 0, 'D2-069-01-1', 0, 1, 2, 2, 69, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-01-2', 0, 'D2-069-01-2', 0, 1, 2, 2, 69, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-02-1', 0, 'D2-069-02-1', 0, 1, 2, 2, 69, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-02-2', 0, 'D2-069-02-2', 0, 1, 2, 2, 69, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-03-1', 0, 'D2-069-03-1', 0, 1, 2, 2, 69, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-03-2', 0, 'D2-069-03-2', 0, 1, 2, 2, 69, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-04-1', 0, 'D2-069-04-1', 0, 1, 2, 2, 69, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-04-2', 0, 'D2-069-04-2', 0, 1, 2, 2, 69, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-05-1', 0, 'D2-069-05-1', 0, 1, 2, 2, 69, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-05-2', 0, 'D2-069-05-2', 0, 1, 2, 2, 69, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-06-1', 0, 'D2-069-06-1', 0, 1, 2, 2, 69, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-06-2', 0, 'D2-069-06-2', 0, 1, 2, 2, 69, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-07-1', 0, 'D2-069-07-1', 0, 1, 2, 2, 69, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-07-2', 0, 'D2-069-07-2', 0, 1, 2, 2, 69, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-08-1', 0, 'D2-069-08-1', 0, 1, 2, 2, 69, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-08-2', 0, 'D2-069-08-2', 0, 1, 2, 2, 69, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-09-1', 0, 'D2-069-09-1', 0, 1, 2, 2, 69, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-09-2', 0, 'D2-069-09-2', 0, 1, 2, 2, 69, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-10-1', 0, 'D2-069-10-1', 0, 1, 2, 2, 69, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-10-2', 0, 'D2-069-10-2', 0, 1, 2, 2, 69, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-11-1', 0, 'D2-069-11-1', 0, 1, 2, 2, 69, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-11-2', 0, 'D2-069-11-2', 0, 1, 2, 2, 69, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-12-1', 0, 'D2-069-12-1', 0, 1, 2, 2, 69, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-12-2', 0, 'D2-069-12-2', 0, 1, 2, 2, 69, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-13-1', 0, 'D2-069-13-1', 0, 1, 2, 2, 69, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-13-2', 0, 'D2-069-13-2', 0, 1, 2, 2, 69, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-14-1', 0, 'D2-069-14-1', 0, 1, 2, 2, 69, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-14-2', 0, 'D2-069-14-2', 0, 1, 2, 2, 69, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-15-1', 0, 'D2-069-15-1', 0, 1, 2, 2, 69, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-069-15-2', 0, 'D2-069-15-2', 0, 1, 2, 2, 69, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-01-1', 0, 'D2-070-01-1', 0, 1, 2, 2, 70, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-01-2', 0, 'D2-070-01-2', 0, 1, 2, 2, 70, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-02-1', 0, 'D2-070-02-1', 0, 1, 2, 2, 70, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-02-2', 0, 'D2-070-02-2', 0, 1, 2, 2, 70, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-03-1', 0, 'D2-070-03-1', 0, 1, 2, 2, 70, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-03-2', 0, 'D2-070-03-2', 0, 1, 2, 2, 70, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-04-1', 0, 'D2-070-04-1', 0, 1, 2, 2, 70, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-04-2', 0, 'D2-070-04-2', 0, 1, 2, 2, 70, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-05-1', 0, 'D2-070-05-1', 0, 1, 2, 2, 70, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-05-2', 0, 'D2-070-05-2', 0, 1, 2, 2, 70, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-06-1', 0, 'D2-070-06-1', 0, 1, 2, 2, 70, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-06-2', 0, 'D2-070-06-2', 0, 1, 2, 2, 70, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-07-1', 0, 'D2-070-07-1', 0, 1, 2, 2, 70, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-07-2', 0, 'D2-070-07-2', 0, 1, 2, 2, 70, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-08-1', 0, 'D2-070-08-1', 0, 1, 2, 2, 70, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-08-2', 0, 'D2-070-08-2', 0, 1, 2, 2, 70, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-09-1', 0, 'D2-070-09-1', 0, 1, 2, 2, 70, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-09-2', 0, 'D2-070-09-2', 0, 1, 2, 2, 70, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-10-1', 0, 'D2-070-10-1', 0, 1, 2, 2, 70, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-10-2', 0, 'D2-070-10-2', 0, 1, 2, 2, 70, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-11-1', 0, 'D2-070-11-1', 0, 1, 2, 2, 70, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-11-2', 0, 'D2-070-11-2', 0, 1, 2, 2, 70, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-12-1', 0, 'D2-070-12-1', 0, 1, 2, 2, 70, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-12-2', 0, 'D2-070-12-2', 0, 1, 2, 2, 70, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-13-1', 0, 'D2-070-13-1', 0, 1, 2, 2, 70, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-13-2', 0, 'D2-070-13-2', 0, 1, 2, 2, 70, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-14-1', 0, 'D2-070-14-1', 0, 1, 2, 2, 70, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-14-2', 0, 'D2-070-14-2', 0, 1, 2, 2, 70, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-15-1', 0, 'D2-070-15-1', 0, 1, 2, 2, 70, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-070-15-2', 0, 'D2-070-15-2', 0, 1, 2, 2, 70, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-01-1', 0, 'D2-071-01-1', 0, 1, 2, 2, 71, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-01-2', 0, 'D2-071-01-2', 0, 1, 2, 2, 71, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-02-1', 0, 'D2-071-02-1', 0, 1, 2, 2, 71, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-02-2', 0, 'D2-071-02-2', 0, 1, 2, 2, 71, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-03-1', 0, 'D2-071-03-1', 0, 1, 2, 2, 71, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-03-2', 0, 'D2-071-03-2', 0, 1, 2, 2, 71, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-04-1', 0, 'D2-071-04-1', 0, 1, 2, 2, 71, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-04-2', 0, 'D2-071-04-2', 0, 1, 2, 2, 71, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-05-1', 0, 'D2-071-05-1', 0, 1, 2, 2, 71, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-05-2', 0, 'D2-071-05-2', 0, 1, 2, 2, 71, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-06-1', 0, 'D2-071-06-1', 0, 1, 2, 2, 71, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-06-2', 0, 'D2-071-06-2', 0, 1, 2, 2, 71, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-07-1', 0, 'D2-071-07-1', 0, 1, 2, 2, 71, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-07-2', 0, 'D2-071-07-2', 0, 1, 2, 2, 71, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-08-1', 0, 'D2-071-08-1', 0, 1, 2, 2, 71, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-08-2', 0, 'D2-071-08-2', 0, 1, 2, 2, 71, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-09-1', 0, 'D2-071-09-1', 0, 1, 2, 2, 71, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-09-2', 0, 'D2-071-09-2', 0, 1, 2, 2, 71, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-10-1', 0, 'D2-071-10-1', 0, 1, 2, 2, 71, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-10-2', 0, 'D2-071-10-2', 0, 1, 2, 2, 71, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-11-1', 0, 'D2-071-11-1', 0, 1, 2, 2, 71, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-11-2', 0, 'D2-071-11-2', 0, 1, 2, 2, 71, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-12-1', 0, 'D2-071-12-1', 0, 1, 2, 2, 71, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-12-2', 0, 'D2-071-12-2', 0, 1, 2, 2, 71, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-13-1', 0, 'D2-071-13-1', 0, 1, 2, 2, 71, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-13-2', 0, 'D2-071-13-2', 0, 1, 2, 2, 71, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-14-1', 0, 'D2-071-14-1', 0, 1, 2, 2, 71, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-14-2', 0, 'D2-071-14-2', 0, 1, 2, 2, 71, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-15-1', 0, 'D2-071-15-1', 0, 1, 2, 2, 71, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-071-15-2', 0, 'D2-071-15-2', 0, 1, 2, 2, 71, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-01-1', 0, 'D2-072-01-1', 0, 1, 2, 2, 72, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-01-2', 0, 'D2-072-01-2', 0, 1, 2, 2, 72, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-02-1', 0, 'D2-072-02-1', 0, 1, 2, 2, 72, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-02-2', 0, 'D2-072-02-2', 0, 1, 2, 2, 72, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-03-1', 0, 'D2-072-03-1', 0, 1, 2, 2, 72, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-03-2', 0, 'D2-072-03-2', 0, 1, 2, 2, 72, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-04-1', 0, 'D2-072-04-1', 0, 1, 2, 2, 72, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-04-2', 0, 'D2-072-04-2', 0, 1, 2, 2, 72, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-05-1', 0, 'D2-072-05-1', 0, 1, 2, 2, 72, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-05-2', 0, 'D2-072-05-2', 0, 1, 2, 2, 72, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-06-1', 0, 'D2-072-06-1', 0, 1, 2, 2, 72, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-06-2', 0, 'D2-072-06-2', 0, 1, 2, 2, 72, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-07-1', 0, 'D2-072-07-1', 0, 1, 2, 2, 72, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-07-2', 0, 'D2-072-07-2', 0, 1, 2, 2, 72, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-08-1', 0, 'D2-072-08-1', 0, 1, 2, 2, 72, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-08-2', 0, 'D2-072-08-2', 0, 1, 2, 2, 72, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-09-1', 0, 'D2-072-09-1', 0, 1, 2, 2, 72, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-09-2', 0, 'D2-072-09-2', 0, 1, 2, 2, 72, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-10-1', 0, 'D2-072-10-1', 0, 1, 2, 2, 72, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-10-2', 0, 'D2-072-10-2', 0, 1, 2, 2, 72, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-11-1', 0, 'D2-072-11-1', 0, 1, 2, 2, 72, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-11-2', 0, 'D2-072-11-2', 0, 1, 2, 2, 72, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-12-1', 0, 'D2-072-12-1', 0, 1, 2, 2, 72, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-12-2', 0, 'D2-072-12-2', 0, 1, 2, 2, 72, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-13-1', 0, 'D2-072-13-1', 0, 1, 2, 2, 72, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-13-2', 0, 'D2-072-13-2', 0, 1, 2, 2, 72, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-14-1', 0, 'D2-072-14-1', 0, 1, 2, 2, 72, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-14-2', 0, 'D2-072-14-2', 0, 1, 2, 2, 72, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-15-1', 0, 'D2-072-15-1', 0, 1, 2, 2, 72, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-072-15-2', 0, 'D2-072-15-2', 0, 1, 2, 2, 72, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-01-1', 0, 'D2-073-01-1', 0, 1, 2, 2, 73, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-01-2', 0, 'D2-073-01-2', 0, 1, 2, 2, 73, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-02-1', 0, 'D2-073-02-1', 0, 1, 2, 2, 73, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-02-2', 0, 'D2-073-02-2', 0, 1, 2, 2, 73, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-03-1', 0, 'D2-073-03-1', 0, 1, 2, 2, 73, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-03-2', 0, 'D2-073-03-2', 0, 1, 2, 2, 73, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-04-1', 0, 'D2-073-04-1', 0, 1, 2, 2, 73, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-04-2', 0, 'D2-073-04-2', 0, 1, 2, 2, 73, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-05-1', 0, 'D2-073-05-1', 0, 1, 2, 2, 73, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-05-2', 0, 'D2-073-05-2', 0, 1, 2, 2, 73, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-06-1', 0, 'D2-073-06-1', 0, 1, 2, 2, 73, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-06-2', 0, 'D2-073-06-2', 0, 1, 2, 2, 73, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-07-1', 0, 'D2-073-07-1', 0, 1, 2, 2, 73, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-07-2', 0, 'D2-073-07-2', 0, 1, 2, 2, 73, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-08-1', 0, 'D2-073-08-1', 0, 1, 2, 2, 73, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-08-2', 0, 'D2-073-08-2', 0, 1, 2, 2, 73, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-09-1', 0, 'D2-073-09-1', 0, 1, 2, 2, 73, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-09-2', 0, 'D2-073-09-2', 0, 1, 2, 2, 73, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-10-1', 0, 'D2-073-10-1', 0, 1, 2, 2, 73, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-10-2', 0, 'D2-073-10-2', 0, 1, 2, 2, 73, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-11-1', 0, 'D2-073-11-1', 0, 1, 2, 2, 73, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-11-2', 0, 'D2-073-11-2', 0, 1, 2, 2, 73, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-12-1', 0, 'D2-073-12-1', 0, 1, 2, 2, 73, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-12-2', 0, 'D2-073-12-2', 0, 1, 2, 2, 73, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-13-1', 0, 'D2-073-13-1', 0, 1, 2, 2, 73, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-13-2', 0, 'D2-073-13-2', 0, 1, 2, 2, 73, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-14-1', 0, 'D2-073-14-1', 0, 1, 2, 2, 73, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-14-2', 0, 'D2-073-14-2', 0, 1, 2, 2, 73, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-15-1', 0, 'D2-073-15-1', 0, 1, 2, 2, 73, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-073-15-2', 0, 'D2-073-15-2', 0, 1, 2, 2, 73, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-01-1', 0, 'D2-074-01-1', 0, 1, 2, 2, 74, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-01-2', 0, 'D2-074-01-2', 0, 1, 2, 2, 74, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-02-1', 0, 'D2-074-02-1', 0, 1, 2, 2, 74, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-02-2', 0, 'D2-074-02-2', 0, 1, 2, 2, 74, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-03-1', 0, 'D2-074-03-1', 0, 1, 2, 2, 74, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-03-2', 0, 'D2-074-03-2', 0, 1, 2, 2, 74, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-04-1', 0, 'D2-074-04-1', 0, 1, 2, 2, 74, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-04-2', 0, 'D2-074-04-2', 0, 1, 2, 2, 74, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-05-1', 0, 'D2-074-05-1', 0, 1, 2, 2, 74, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-05-2', 0, 'D2-074-05-2', 0, 1, 2, 2, 74, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-06-1', 0, 'D2-074-06-1', 0, 1, 2, 2, 74, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-06-2', 0, 'D2-074-06-2', 0, 1, 2, 2, 74, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-07-1', 0, 'D2-074-07-1', 0, 1, 2, 2, 74, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-07-2', 0, 'D2-074-07-2', 0, 1, 2, 2, 74, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-08-1', 0, 'D2-074-08-1', 0, 1, 2, 2, 74, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-08-2', 0, 'D2-074-08-2', 0, 1, 2, 2, 74, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-09-1', 0, 'D2-074-09-1', 0, 1, 2, 2, 74, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-09-2', 0, 'D2-074-09-2', 0, 1, 2, 2, 74, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-10-1', 0, 'D2-074-10-1', 0, 1, 2, 2, 74, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-10-2', 0, 'D2-074-10-2', 0, 1, 2, 2, 74, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-11-1', 0, 'D2-074-11-1', 0, 1, 2, 2, 74, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-11-2', 0, 'D2-074-11-2', 0, 1, 2, 2, 74, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-12-1', 0, 'D2-074-12-1', 0, 1, 2, 2, 74, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-12-2', 0, 'D2-074-12-2', 0, 1, 2, 2, 74, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-13-1', 0, 'D2-074-13-1', 0, 1, 2, 2, 74, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-13-2', 0, 'D2-074-13-2', 0, 1, 2, 2, 74, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-14-1', 0, 'D2-074-14-1', 0, 1, 2, 2, 74, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-14-2', 0, 'D2-074-14-2', 0, 1, 2, 2, 74, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-15-1', 0, 'D2-074-15-1', 0, 1, 2, 2, 74, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-074-15-2', 0, 'D2-074-15-2', 0, 1, 2, 2, 74, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-01-1', 0, 'D2-075-01-1', 0, 1, 2, 2, 75, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-01-2', 0, 'D2-075-01-2', 0, 1, 2, 2, 75, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-02-1', 0, 'D2-075-02-1', 0, 1, 2, 2, 75, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-02-2', 0, 'D2-075-02-2', 0, 1, 2, 2, 75, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-03-1', 0, 'D2-075-03-1', 0, 1, 2, 2, 75, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-03-2', 0, 'D2-075-03-2', 0, 1, 2, 2, 75, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-04-1', 0, 'D2-075-04-1', 0, 1, 2, 2, 75, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-04-2', 0, 'D2-075-04-2', 0, 1, 2, 2, 75, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-05-1', 0, 'D2-075-05-1', 0, 1, 2, 2, 75, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-05-2', 0, 'D2-075-05-2', 0, 1, 2, 2, 75, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-06-1', 0, 'D2-075-06-1', 0, 1, 2, 2, 75, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-06-2', 0, 'D2-075-06-2', 0, 1, 2, 2, 75, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-07-1', 0, 'D2-075-07-1', 0, 1, 2, 2, 75, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-07-2', 0, 'D2-075-07-2', 0, 1, 2, 2, 75, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-08-1', 0, 'D2-075-08-1', 0, 1, 2, 2, 75, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-08-2', 0, 'D2-075-08-2', 0, 1, 2, 2, 75, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-09-1', 0, 'D2-075-09-1', 0, 1, 2, 2, 75, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-09-2', 0, 'D2-075-09-2', 0, 1, 2, 2, 75, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-10-1', 0, 'D2-075-10-1', 0, 1, 2, 2, 75, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-10-2', 0, 'D2-075-10-2', 0, 1, 2, 2, 75, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-11-1', 0, 'D2-075-11-1', 0, 1, 2, 2, 75, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-11-2', 0, 'D2-075-11-2', 0, 1, 2, 2, 75, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-12-1', 0, 'D2-075-12-1', 0, 1, 2, 2, 75, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-12-2', 0, 'D2-075-12-2', 0, 1, 2, 2, 75, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-13-1', 0, 'D2-075-13-1', 0, 1, 2, 2, 75, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-13-2', 0, 'D2-075-13-2', 0, 1, 2, 2, 75, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-14-1', 0, 'D2-075-14-1', 0, 1, 2, 2, 75, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-14-2', 0, 'D2-075-14-2', 0, 1, 2, 2, 75, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-15-1', 0, 'D2-075-15-1', 0, 1, 2, 2, 75, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-075-15-2', 0, 'D2-075-15-2', 0, 1, 2, 2, 75, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-01-1', 0, 'D2-076-01-1', 0, 1, 2, 2, 76, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-01-2', 0, 'D2-076-01-2', 0, 1, 2, 2, 76, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-02-1', 0, 'D2-076-02-1', 0, 1, 2, 2, 76, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-02-2', 0, 'D2-076-02-2', 0, 1, 2, 2, 76, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-03-1', 0, 'D2-076-03-1', 0, 1, 2, 2, 76, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-03-2', 0, 'D2-076-03-2', 0, 1, 2, 2, 76, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-04-1', 0, 'D2-076-04-1', 0, 1, 2, 2, 76, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-04-2', 0, 'D2-076-04-2', 0, 1, 2, 2, 76, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-05-1', 0, 'D2-076-05-1', 0, 1, 2, 2, 76, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-05-2', 0, 'D2-076-05-2', 0, 1, 2, 2, 76, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-06-1', 0, 'D2-076-06-1', 0, 1, 2, 2, 76, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-06-2', 0, 'D2-076-06-2', 0, 1, 2, 2, 76, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-07-1', 0, 'D2-076-07-1', 0, 1, 2, 2, 76, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-07-2', 0, 'D2-076-07-2', 0, 1, 2, 2, 76, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-08-1', 0, 'D2-076-08-1', 0, 1, 2, 2, 76, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-08-2', 0, 'D2-076-08-2', 0, 1, 2, 2, 76, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-09-1', 0, 'D2-076-09-1', 0, 1, 2, 2, 76, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-09-2', 0, 'D2-076-09-2', 0, 1, 2, 2, 76, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-10-1', 0, 'D2-076-10-1', 0, 1, 2, 2, 76, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-10-2', 0, 'D2-076-10-2', 0, 1, 2, 2, 76, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-11-1', 0, 'D2-076-11-1', 0, 1, 2, 2, 76, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-11-2', 0, 'D2-076-11-2', 0, 1, 2, 2, 76, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-12-1', 0, 'D2-076-12-1', 0, 1, 2, 2, 76, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-12-2', 0, 'D2-076-12-2', 0, 1, 2, 2, 76, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-13-1', 0, 'D2-076-13-1', 0, 1, 2, 2, 76, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-13-2', 0, 'D2-076-13-2', 0, 1, 2, 2, 76, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-14-1', 0, 'D2-076-14-1', 0, 1, 2, 2, 76, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-14-2', 0, 'D2-076-14-2', 0, 1, 2, 2, 76, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-15-1', 0, 'D2-076-15-1', 0, 1, 2, 2, 76, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-076-15-2', 0, 'D2-076-15-2', 0, 1, 2, 2, 76, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-01-1', 0, 'D2-077-01-1', 0, 1, 2, 2, 77, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-01-2', 0, 'D2-077-01-2', 0, 1, 2, 2, 77, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-02-1', 0, 'D2-077-02-1', 0, 1, 2, 2, 77, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-02-2', 0, 'D2-077-02-2', 0, 1, 2, 2, 77, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-03-1', 0, 'D2-077-03-1', 0, 1, 2, 2, 77, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-03-2', 0, 'D2-077-03-2', 0, 1, 2, 2, 77, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-04-1', 0, 'D2-077-04-1', 0, 1, 2, 2, 77, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-04-2', 0, 'D2-077-04-2', 0, 1, 2, 2, 77, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-05-1', 0, 'D2-077-05-1', 0, 1, 2, 2, 77, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-05-2', 0, 'D2-077-05-2', 0, 1, 2, 2, 77, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-06-1', 0, 'D2-077-06-1', 0, 1, 2, 2, 77, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-06-2', 0, 'D2-077-06-2', 0, 1, 2, 2, 77, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-07-1', 0, 'D2-077-07-1', 0, 1, 2, 2, 77, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-07-2', 0, 'D2-077-07-2', 0, 1, 2, 2, 77, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-08-1', 0, 'D2-077-08-1', 0, 1, 2, 2, 77, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-08-2', 0, 'D2-077-08-2', 0, 1, 2, 2, 77, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-09-1', 0, 'D2-077-09-1', 0, 1, 2, 2, 77, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-09-2', 0, 'D2-077-09-2', 0, 1, 2, 2, 77, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-10-1', 0, 'D2-077-10-1', 0, 1, 2, 2, 77, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-10-2', 0, 'D2-077-10-2', 0, 1, 2, 2, 77, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-11-1', 0, 'D2-077-11-1', 0, 1, 2, 2, 77, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-11-2', 0, 'D2-077-11-2', 0, 1, 2, 2, 77, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-12-1', 0, 'D2-077-12-1', 0, 1, 2, 2, 77, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-12-2', 0, 'D2-077-12-2', 0, 1, 2, 2, 77, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-13-1', 0, 'D2-077-13-1', 0, 1, 2, 2, 77, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-13-2', 0, 'D2-077-13-2', 0, 1, 2, 2, 77, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-14-1', 0, 'D2-077-14-1', 0, 1, 2, 2, 77, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-14-2', 0, 'D2-077-14-2', 0, 1, 2, 2, 77, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-15-1', 0, 'D2-077-15-1', 0, 1, 2, 2, 77, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-077-15-2', 0, 'D2-077-15-2', 0, 1, 2, 2, 77, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-01-1', 0, 'D2-078-01-1', 0, 1, 2, 2, 78, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-01-2', 0, 'D2-078-01-2', 0, 1, 2, 2, 78, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-02-1', 0, 'D2-078-02-1', 0, 1, 2, 2, 78, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-02-2', 0, 'D2-078-02-2', 0, 1, 2, 2, 78, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-03-1', 0, 'D2-078-03-1', 0, 1, 2, 2, 78, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-03-2', 0, 'D2-078-03-2', 0, 1, 2, 2, 78, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-04-1', 0, 'D2-078-04-1', 0, 1, 2, 2, 78, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-04-2', 0, 'D2-078-04-2', 0, 1, 2, 2, 78, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-05-1', 0, 'D2-078-05-1', 0, 1, 2, 2, 78, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-05-2', 0, 'D2-078-05-2', 0, 1, 2, 2, 78, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-06-1', 0, 'D2-078-06-1', 0, 1, 2, 2, 78, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-06-2', 0, 'D2-078-06-2', 0, 1, 2, 2, 78, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-07-1', 0, 'D2-078-07-1', 0, 1, 2, 2, 78, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-07-2', 0, 'D2-078-07-2', 0, 1, 2, 2, 78, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-08-1', 0, 'D2-078-08-1', 0, 1, 2, 2, 78, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-08-2', 0, 'D2-078-08-2', 0, 1, 2, 2, 78, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-09-1', 0, 'D2-078-09-1', 0, 1, 2, 2, 78, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-09-2', 0, 'D2-078-09-2', 0, 1, 2, 2, 78, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-10-1', 0, 'D2-078-10-1', 0, 1, 2, 2, 78, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-10-2', 0, 'D2-078-10-2', 0, 1, 2, 2, 78, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-11-1', 0, 'D2-078-11-1', 0, 1, 2, 2, 78, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-11-2', 0, 'D2-078-11-2', 0, 1, 2, 2, 78, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-12-1', 0, 'D2-078-12-1', 0, 1, 2, 2, 78, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-12-2', 0, 'D2-078-12-2', 0, 1, 2, 2, 78, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-13-1', 0, 'D2-078-13-1', 0, 1, 2, 2, 78, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-13-2', 0, 'D2-078-13-2', 0, 1, 2, 2, 78, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-14-1', 0, 'D2-078-14-1', 0, 1, 2, 2, 78, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-14-2', 0, 'D2-078-14-2', 0, 1, 2, 2, 78, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-15-1', 0, 'D2-078-15-1', 0, 1, 2, 2, 78, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-078-15-2', 0, 'D2-078-15-2', 0, 1, 2, 2, 78, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-01-1', 0, 'D2-079-01-1', 0, 1, 2, 2, 79, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-01-2', 0, 'D2-079-01-2', 0, 1, 2, 2, 79, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-02-1', 0, 'D2-079-02-1', 0, 1, 2, 2, 79, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-02-2', 0, 'D2-079-02-2', 0, 1, 2, 2, 79, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-03-1', 0, 'D2-079-03-1', 0, 1, 2, 2, 79, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-03-2', 0, 'D2-079-03-2', 0, 1, 2, 2, 79, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-04-1', 0, 'D2-079-04-1', 0, 1, 2, 2, 79, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-04-2', 0, 'D2-079-04-2', 0, 1, 2, 2, 79, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-05-1', 0, 'D2-079-05-1', 0, 1, 2, 2, 79, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-05-2', 0, 'D2-079-05-2', 0, 1, 2, 2, 79, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-06-1', 0, 'D2-079-06-1', 0, 1, 2, 2, 79, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-06-2', 0, 'D2-079-06-2', 0, 1, 2, 2, 79, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-07-1', 0, 'D2-079-07-1', 0, 1, 2, 2, 79, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-07-2', 0, 'D2-079-07-2', 0, 1, 2, 2, 79, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-08-1', 0, 'D2-079-08-1', 0, 1, 2, 2, 79, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-08-2', 0, 'D2-079-08-2', 0, 1, 2, 2, 79, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-09-1', 0, 'D2-079-09-1', 0, 1, 2, 2, 79, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-09-2', 0, 'D2-079-09-2', 0, 1, 2, 2, 79, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-10-1', 0, 'D2-079-10-1', 0, 1, 2, 2, 79, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-10-2', 0, 'D2-079-10-2', 0, 1, 2, 2, 79, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-11-1', 0, 'D2-079-11-1', 0, 1, 2, 2, 79, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-11-2', 0, 'D2-079-11-2', 0, 1, 2, 2, 79, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-12-1', 0, 'D2-079-12-1', 0, 1, 2, 2, 79, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-12-2', 0, 'D2-079-12-2', 0, 1, 2, 2, 79, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-13-1', 0, 'D2-079-13-1', 0, 1, 2, 2, 79, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-13-2', 0, 'D2-079-13-2', 0, 1, 2, 2, 79, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-14-1', 0, 'D2-079-14-1', 0, 1, 2, 2, 79, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-14-2', 0, 'D2-079-14-2', 0, 1, 2, 2, 79, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-15-1', 0, 'D2-079-15-1', 0, 1, 2, 2, 79, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-079-15-2', 0, 'D2-079-15-2', 0, 1, 2, 2, 79, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-01-1', 0, 'D2-080-01-1', 0, 1, 2, 2, 80, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-01-2', 0, 'D2-080-01-2', 0, 1, 2, 2, 80, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-02-1', 0, 'D2-080-02-1', 0, 1, 2, 2, 80, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-02-2', 0, 'D2-080-02-2', 0, 1, 2, 2, 80, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-03-1', 0, 'D2-080-03-1', 0, 1, 2, 2, 80, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-03-2', 0, 'D2-080-03-2', 0, 1, 2, 2, 80, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-04-1', 0, 'D2-080-04-1', 0, 1, 2, 2, 80, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-04-2', 0, 'D2-080-04-2', 0, 1, 2, 2, 80, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-05-1', 0, 'D2-080-05-1', 0, 1, 2, 2, 80, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-05-2', 0, 'D2-080-05-2', 0, 1, 2, 2, 80, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-06-1', 0, 'D2-080-06-1', 0, 1, 2, 2, 80, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-06-2', 0, 'D2-080-06-2', 0, 1, 2, 2, 80, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-07-1', 0, 'D2-080-07-1', 0, 1, 2, 2, 80, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-07-2', 0, 'D2-080-07-2', 0, 1, 2, 2, 80, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-08-1', 0, 'D2-080-08-1', 0, 1, 2, 2, 80, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-08-2', 0, 'D2-080-08-2', 0, 1, 2, 2, 80, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-09-1', 0, 'D2-080-09-1', 0, 1, 2, 2, 80, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-09-2', 0, 'D2-080-09-2', 0, 1, 2, 2, 80, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-10-1', 0, 'D2-080-10-1', 0, 1, 2, 2, 80, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-10-2', 0, 'D2-080-10-2', 0, 1, 2, 2, 80, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-11-1', 0, 'D2-080-11-1', 0, 1, 2, 2, 80, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-11-2', 0, 'D2-080-11-2', 0, 1, 2, 2, 80, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-12-1', 0, 'D2-080-12-1', 0, 1, 2, 2, 80, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-12-2', 0, 'D2-080-12-2', 0, 1, 2, 2, 80, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-13-1', 0, 'D2-080-13-1', 0, 1, 2, 2, 80, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-13-2', 0, 'D2-080-13-2', 0, 1, 2, 2, 80, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-14-1', 0, 'D2-080-14-1', 0, 1, 2, 2, 80, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-14-2', 0, 'D2-080-14-2', 0, 1, 2, 2, 80, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-15-1', 0, 'D2-080-15-1', 0, 1, 2, 2, 80, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-080-15-2', 0, 'D2-080-15-2', 0, 1, 2, 2, 80, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-01-1', 0, 'D2-081-01-1', 0, 1, 2, 2, 81, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-01-2', 0, 'D2-081-01-2', 0, 1, 2, 2, 81, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-02-1', 0, 'D2-081-02-1', 0, 1, 2, 2, 81, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-02-2', 0, 'D2-081-02-2', 0, 1, 2, 2, 81, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-03-1', 0, 'D2-081-03-1', 0, 1, 2, 2, 81, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-03-2', 0, 'D2-081-03-2', 0, 1, 2, 2, 81, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-04-1', 0, 'D2-081-04-1', 0, 1, 2, 2, 81, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-04-2', 0, 'D2-081-04-2', 0, 1, 2, 2, 81, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-05-1', 0, 'D2-081-05-1', 0, 1, 2, 2, 81, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-05-2', 0, 'D2-081-05-2', 0, 1, 2, 2, 81, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-06-1', 0, 'D2-081-06-1', 0, 1, 2, 2, 81, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-06-2', 0, 'D2-081-06-2', 0, 1, 2, 2, 81, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-07-1', 0, 'D2-081-07-1', 0, 1, 2, 2, 81, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-07-2', 0, 'D2-081-07-2', 0, 1, 2, 2, 81, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-08-1', 0, 'D2-081-08-1', 0, 1, 2, 2, 81, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-08-2', 0, 'D2-081-08-2', 0, 1, 2, 2, 81, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-09-1', 0, 'D2-081-09-1', 0, 1, 2, 2, 81, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-09-2', 0, 'D2-081-09-2', 0, 1, 2, 2, 81, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-10-1', 0, 'D2-081-10-1', 0, 1, 2, 2, 81, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-10-2', 0, 'D2-081-10-2', 0, 1, 2, 2, 81, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-11-1', 0, 'D2-081-11-1', 0, 1, 2, 2, 81, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-11-2', 0, 'D2-081-11-2', 0, 1, 2, 2, 81, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-12-1', 0, 'D2-081-12-1', 0, 1, 2, 2, 81, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-12-2', 0, 'D2-081-12-2', 0, 1, 2, 2, 81, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-13-1', 0, 'D2-081-13-1', 0, 1, 2, 2, 81, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-13-2', 0, 'D2-081-13-2', 0, 1, 2, 2, 81, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-14-1', 0, 'D2-081-14-1', 0, 1, 2, 2, 81, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-14-2', 0, 'D2-081-14-2', 0, 1, 2, 2, 81, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-15-1', 0, 'D2-081-15-1', 0, 1, 2, 2, 81, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-081-15-2', 0, 'D2-081-15-2', 0, 1, 2, 2, 81, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-01-1', 0, 'D2-082-01-1', 0, 1, 2, 2, 82, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-01-2', 0, 'D2-082-01-2', 0, 1, 2, 2, 82, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-02-1', 0, 'D2-082-02-1', 0, 1, 2, 2, 82, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-02-2', 0, 'D2-082-02-2', 0, 1, 2, 2, 82, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-03-1', 0, 'D2-082-03-1', 0, 1, 2, 2, 82, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-03-2', 0, 'D2-082-03-2', 0, 1, 2, 2, 82, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-04-1', 0, 'D2-082-04-1', 0, 1, 2, 2, 82, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-04-2', 0, 'D2-082-04-2', 0, 1, 2, 2, 82, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-05-1', 0, 'D2-082-05-1', 0, 1, 2, 2, 82, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-05-2', 0, 'D2-082-05-2', 0, 1, 2, 2, 82, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-06-1', 0, 'D2-082-06-1', 0, 1, 2, 2, 82, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-06-2', 0, 'D2-082-06-2', 0, 1, 2, 2, 82, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-07-1', 0, 'D2-082-07-1', 0, 1, 2, 2, 82, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-07-2', 0, 'D2-082-07-2', 0, 1, 2, 2, 82, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-08-1', 0, 'D2-082-08-1', 0, 1, 2, 2, 82, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-08-2', 0, 'D2-082-08-2', 0, 1, 2, 2, 82, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-09-1', 0, 'D2-082-09-1', 0, 1, 2, 2, 82, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-09-2', 0, 'D2-082-09-2', 0, 1, 2, 2, 82, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-10-1', 0, 'D2-082-10-1', 0, 1, 2, 2, 82, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-10-2', 0, 'D2-082-10-2', 0, 1, 2, 2, 82, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-11-1', 0, 'D2-082-11-1', 0, 1, 2, 2, 82, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-11-2', 0, 'D2-082-11-2', 0, 1, 2, 2, 82, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-12-1', 0, 'D2-082-12-1', 0, 1, 2, 2, 82, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-12-2', 0, 'D2-082-12-2', 0, 1, 2, 2, 82, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-13-1', 0, 'D2-082-13-1', 0, 1, 2, 2, 82, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-13-2', 0, 'D2-082-13-2', 0, 1, 2, 2, 82, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-14-1', 0, 'D2-082-14-1', 0, 1, 2, 2, 82, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-14-2', 0, 'D2-082-14-2', 0, 1, 2, 2, 82, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-15-1', 0, 'D2-082-15-1', 0, 1, 2, 2, 82, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-082-15-2', 0, 'D2-082-15-2', 0, 1, 2, 2, 82, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-01-1', 0, 'D2-083-01-1', 0, 1, 2, 2, 83, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-01-2', 0, 'D2-083-01-2', 0, 1, 2, 2, 83, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-02-1', 0, 'D2-083-02-1', 0, 1, 2, 2, 83, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-02-2', 0, 'D2-083-02-2', 0, 1, 2, 2, 83, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-03-1', 0, 'D2-083-03-1', 0, 1, 2, 2, 83, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-03-2', 0, 'D2-083-03-2', 0, 1, 2, 2, 83, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-04-1', 0, 'D2-083-04-1', 0, 1, 2, 2, 83, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-04-2', 0, 'D2-083-04-2', 0, 1, 2, 2, 83, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-05-1', 0, 'D2-083-05-1', 0, 1, 2, 2, 83, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-05-2', 0, 'D2-083-05-2', 0, 1, 2, 2, 83, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-06-1', 0, 'D2-083-06-1', 0, 1, 2, 2, 83, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-06-2', 0, 'D2-083-06-2', 0, 1, 2, 2, 83, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-07-1', 0, 'D2-083-07-1', 0, 1, 2, 2, 83, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-07-2', 0, 'D2-083-07-2', 0, 1, 2, 2, 83, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-08-1', 0, 'D2-083-08-1', 0, 1, 2, 2, 83, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-08-2', 0, 'D2-083-08-2', 0, 1, 2, 2, 83, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-09-1', 0, 'D2-083-09-1', 0, 1, 2, 2, 83, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-09-2', 0, 'D2-083-09-2', 0, 1, 2, 2, 83, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-10-1', 0, 'D2-083-10-1', 0, 1, 2, 2, 83, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-10-2', 0, 'D2-083-10-2', 0, 1, 2, 2, 83, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-11-1', 0, 'D2-083-11-1', 0, 1, 2, 2, 83, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-11-2', 0, 'D2-083-11-2', 0, 1, 2, 2, 83, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-12-1', 0, 'D2-083-12-1', 0, 1, 2, 2, 83, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-12-2', 0, 'D2-083-12-2', 0, 1, 2, 2, 83, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-13-1', 0, 'D2-083-13-1', 0, 1, 2, 2, 83, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-13-2', 0, 'D2-083-13-2', 0, 1, 2, 2, 83, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-14-1', 0, 'D2-083-14-1', 0, 1, 2, 2, 83, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-14-2', 0, 'D2-083-14-2', 0, 1, 2, 2, 83, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-15-1', 0, 'D2-083-15-1', 0, 1, 2, 2, 83, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-083-15-2', 0, 'D2-083-15-2', 0, 1, 2, 2, 83, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-01-1', 0, 'D2-084-01-1', 0, 1, 2, 2, 84, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-01-2', 0, 'D2-084-01-2', 0, 1, 2, 2, 84, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-02-1', 0, 'D2-084-02-1', 0, 1, 2, 2, 84, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-02-2', 0, 'D2-084-02-2', 0, 1, 2, 2, 84, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-03-1', 0, 'D2-084-03-1', 0, 1, 2, 2, 84, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-03-2', 0, 'D2-084-03-2', 0, 1, 2, 2, 84, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-04-1', 0, 'D2-084-04-1', 0, 1, 2, 2, 84, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-04-2', 0, 'D2-084-04-2', 0, 1, 2, 2, 84, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-05-1', 0, 'D2-084-05-1', 0, 1, 2, 2, 84, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-05-2', 0, 'D2-084-05-2', 0, 1, 2, 2, 84, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-06-1', 0, 'D2-084-06-1', 0, 1, 2, 2, 84, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-06-2', 0, 'D2-084-06-2', 0, 1, 2, 2, 84, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-07-1', 0, 'D2-084-07-1', 0, 1, 2, 2, 84, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-07-2', 0, 'D2-084-07-2', 0, 1, 2, 2, 84, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-08-1', 0, 'D2-084-08-1', 0, 1, 2, 2, 84, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-08-2', 0, 'D2-084-08-2', 0, 1, 2, 2, 84, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-09-1', 0, 'D2-084-09-1', 0, 1, 2, 2, 84, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-09-2', 0, 'D2-084-09-2', 0, 1, 2, 2, 84, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-10-1', 0, 'D2-084-10-1', 0, 1, 2, 2, 84, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-10-2', 0, 'D2-084-10-2', 0, 1, 2, 2, 84, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-11-1', 0, 'D2-084-11-1', 0, 1, 2, 2, 84, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-11-2', 0, 'D2-084-11-2', 0, 1, 2, 2, 84, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-12-1', 0, 'D2-084-12-1', 0, 1, 2, 2, 84, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-12-2', 0, 'D2-084-12-2', 0, 1, 2, 2, 84, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-13-1', 0, 'D2-084-13-1', 0, 1, 2, 2, 84, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-13-2', 0, 'D2-084-13-2', 0, 1, 2, 2, 84, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-14-1', 0, 'D2-084-14-1', 0, 1, 2, 2, 84, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-14-2', 0, 'D2-084-14-2', 0, 1, 2, 2, 84, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-15-1', 0, 'D2-084-15-1', 0, 1, 2, 2, 84, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-084-15-2', 0, 'D2-084-15-2', 0, 1, 2, 2, 84, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-01-1', 0, 'D2-085-01-1', 0, 1, 2, 2, 85, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-01-2', 0, 'D2-085-01-2', 0, 1, 2, 2, 85, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-02-1', 0, 'D2-085-02-1', 0, 1, 2, 2, 85, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-02-2', 0, 'D2-085-02-2', 0, 1, 2, 2, 85, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-03-1', 0, 'D2-085-03-1', 0, 1, 2, 2, 85, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-03-2', 0, 'D2-085-03-2', 0, 1, 2, 2, 85, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-04-1', 0, 'D2-085-04-1', 0, 1, 2, 2, 85, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-04-2', 0, 'D2-085-04-2', 0, 1, 2, 2, 85, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-05-1', 0, 'D2-085-05-1', 0, 1, 2, 2, 85, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-05-2', 0, 'D2-085-05-2', 0, 1, 2, 2, 85, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-06-1', 0, 'D2-085-06-1', 0, 1, 2, 2, 85, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-06-2', 0, 'D2-085-06-2', 0, 1, 2, 2, 85, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-07-1', 0, 'D2-085-07-1', 0, 1, 2, 2, 85, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-07-2', 0, 'D2-085-07-2', 0, 1, 2, 2, 85, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-08-1', 0, 'D2-085-08-1', 0, 1, 2, 2, 85, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-08-2', 0, 'D2-085-08-2', 0, 1, 2, 2, 85, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-09-1', 0, 'D2-085-09-1', 0, 1, 2, 2, 85, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-09-2', 0, 'D2-085-09-2', 0, 1, 2, 2, 85, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-10-1', 0, 'D2-085-10-1', 0, 1, 2, 2, 85, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-10-2', 0, 'D2-085-10-2', 0, 1, 2, 2, 85, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-11-1', 0, 'D2-085-11-1', 0, 1, 2, 2, 85, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-11-2', 0, 'D2-085-11-2', 0, 1, 2, 2, 85, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-12-1', 0, 'D2-085-12-1', 0, 1, 2, 2, 85, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-12-2', 0, 'D2-085-12-2', 0, 1, 2, 2, 85, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-13-1', 0, 'D2-085-13-1', 0, 1, 2, 2, 85, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-13-2', 0, 'D2-085-13-2', 0, 1, 2, 2, 85, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-14-1', 0, 'D2-085-14-1', 0, 1, 2, 2, 85, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-14-2', 0, 'D2-085-14-2', 0, 1, 2, 2, 85, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-15-1', 0, 'D2-085-15-1', 0, 1, 2, 2, 85, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-085-15-2', 0, 'D2-085-15-2', 0, 1, 2, 2, 85, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-01-1', 0, 'D2-086-01-1', 0, 1, 2, 2, 86, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-01-2', 0, 'D2-086-01-2', 0, 1, 2, 2, 86, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-02-1', 0, 'D2-086-02-1', 0, 1, 2, 2, 86, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-02-2', 0, 'D2-086-02-2', 0, 1, 2, 2, 86, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-03-1', 0, 'D2-086-03-1', 0, 1, 2, 2, 86, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-03-2', 0, 'D2-086-03-2', 0, 1, 2, 2, 86, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-04-1', 0, 'D2-086-04-1', 0, 1, 2, 2, 86, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-04-2', 0, 'D2-086-04-2', 0, 1, 2, 2, 86, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-05-1', 0, 'D2-086-05-1', 0, 1, 2, 2, 86, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-05-2', 0, 'D2-086-05-2', 0, 1, 2, 2, 86, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-06-1', 0, 'D2-086-06-1', 0, 1, 2, 2, 86, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-06-2', 0, 'D2-086-06-2', 0, 1, 2, 2, 86, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-07-1', 0, 'D2-086-07-1', 0, 1, 2, 2, 86, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-07-2', 0, 'D2-086-07-2', 0, 1, 2, 2, 86, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-08-1', 0, 'D2-086-08-1', 0, 1, 2, 2, 86, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-08-2', 0, 'D2-086-08-2', 0, 1, 2, 2, 86, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-09-1', 0, 'D2-086-09-1', 0, 1, 2, 2, 86, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-09-2', 0, 'D2-086-09-2', 0, 1, 2, 2, 86, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-10-1', 0, 'D2-086-10-1', 0, 1, 2, 2, 86, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-10-2', 0, 'D2-086-10-2', 0, 1, 2, 2, 86, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-11-1', 0, 'D2-086-11-1', 0, 1, 2, 2, 86, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-11-2', 0, 'D2-086-11-2', 0, 1, 2, 2, 86, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-12-1', 0, 'D2-086-12-1', 0, 1, 2, 2, 86, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-12-2', 0, 'D2-086-12-2', 0, 1, 2, 2, 86, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-13-1', 0, 'D2-086-13-1', 0, 1, 2, 2, 86, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-13-2', 0, 'D2-086-13-2', 0, 1, 2, 2, 86, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-14-1', 0, 'D2-086-14-1', 0, 1, 2, 2, 86, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-14-2', 0, 'D2-086-14-2', 0, 1, 2, 2, 86, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-15-1', 0, 'D2-086-15-1', 0, 1, 2, 2, 86, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-086-15-2', 0, 'D2-086-15-2', 0, 1, 2, 2, 86, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-01-1', 0, 'D2-087-01-1', 0, 1, 2, 2, 87, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-01-2', 0, 'D2-087-01-2', 0, 1, 2, 2, 87, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-02-1', 0, 'D2-087-02-1', 0, 1, 2, 2, 87, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-02-2', 0, 'D2-087-02-2', 0, 1, 2, 2, 87, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-03-1', 0, 'D2-087-03-1', 0, 1, 2, 2, 87, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-03-2', 0, 'D2-087-03-2', 0, 1, 2, 2, 87, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-04-1', 0, 'D2-087-04-1', 0, 1, 2, 2, 87, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-04-2', 0, 'D2-087-04-2', 0, 1, 2, 2, 87, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-05-1', 0, 'D2-087-05-1', 0, 1, 2, 2, 87, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-05-2', 0, 'D2-087-05-2', 0, 1, 2, 2, 87, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-06-1', 0, 'D2-087-06-1', 0, 1, 2, 2, 87, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-06-2', 0, 'D2-087-06-2', 0, 1, 2, 2, 87, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-07-1', 0, 'D2-087-07-1', 0, 1, 2, 2, 87, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-07-2', 0, 'D2-087-07-2', 0, 1, 2, 2, 87, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-08-1', 0, 'D2-087-08-1', 0, 1, 2, 2, 87, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-08-2', 0, 'D2-087-08-2', 0, 1, 2, 2, 87, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-09-1', 0, 'D2-087-09-1', 0, 1, 2, 2, 87, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-09-2', 0, 'D2-087-09-2', 0, 1, 2, 2, 87, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-10-1', 0, 'D2-087-10-1', 0, 1, 2, 2, 87, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-10-2', 0, 'D2-087-10-2', 0, 1, 2, 2, 87, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-11-1', 0, 'D2-087-11-1', 0, 1, 2, 2, 87, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-11-2', 0, 'D2-087-11-2', 0, 1, 2, 2, 87, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-12-1', 0, 'D2-087-12-1', 0, 1, 2, 2, 87, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-12-2', 0, 'D2-087-12-2', 0, 1, 2, 2, 87, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-13-1', 0, 'D2-087-13-1', 0, 1, 2, 2, 87, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-13-2', 0, 'D2-087-13-2', 0, 1, 2, 2, 87, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-14-1', 0, 'D2-087-14-1', 0, 1, 2, 2, 87, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-14-2', 0, 'D2-087-14-2', 0, 1, 2, 2, 87, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-15-1', 0, 'D2-087-15-1', 0, 1, 2, 2, 87, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-087-15-2', 0, 'D2-087-15-2', 0, 1, 2, 2, 87, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-01-1', 0, 'D2-088-01-1', 0, 1, 2, 2, 88, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-01-2', 0, 'D2-088-01-2', 0, 1, 2, 2, 88, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-02-1', 0, 'D2-088-02-1', 0, 1, 2, 2, 88, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-02-2', 0, 'D2-088-02-2', 0, 1, 2, 2, 88, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-03-1', 0, 'D2-088-03-1', 0, 1, 2, 2, 88, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-03-2', 0, 'D2-088-03-2', 0, 1, 2, 2, 88, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-04-1', 0, 'D2-088-04-1', 0, 1, 2, 2, 88, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-04-2', 0, 'D2-088-04-2', 0, 1, 2, 2, 88, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-05-1', 0, 'D2-088-05-1', 0, 1, 2, 2, 88, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-05-2', 0, 'D2-088-05-2', 0, 1, 2, 2, 88, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-06-1', 0, 'D2-088-06-1', 0, 1, 2, 2, 88, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-06-2', 0, 'D2-088-06-2', 0, 1, 2, 2, 88, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-07-1', 0, 'D2-088-07-1', 0, 1, 2, 2, 88, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-07-2', 0, 'D2-088-07-2', 0, 1, 2, 2, 88, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-08-1', 0, 'D2-088-08-1', 0, 1, 2, 2, 88, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-08-2', 0, 'D2-088-08-2', 0, 1, 2, 2, 88, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-09-1', 0, 'D2-088-09-1', 0, 1, 2, 2, 88, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-09-2', 0, 'D2-088-09-2', 0, 1, 2, 2, 88, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-10-1', 0, 'D2-088-10-1', 0, 1, 2, 2, 88, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-10-2', 0, 'D2-088-10-2', 0, 1, 2, 2, 88, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-11-1', 0, 'D2-088-11-1', 0, 1, 2, 2, 88, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-11-2', 0, 'D2-088-11-2', 0, 1, 2, 2, 88, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-12-1', 0, 'D2-088-12-1', 0, 1, 2, 2, 88, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-12-2', 0, 'D2-088-12-2', 0, 1, 2, 2, 88, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-13-1', 0, 'D2-088-13-1', 0, 1, 2, 2, 88, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-13-2', 0, 'D2-088-13-2', 0, 1, 2, 2, 88, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-14-1', 0, 'D2-088-14-1', 0, 1, 2, 2, 88, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-14-2', 0, 'D2-088-14-2', 0, 1, 2, 2, 88, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-15-1', 0, 'D2-088-15-1', 0, 1, 2, 2, 88, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-088-15-2', 0, 'D2-088-15-2', 0, 1, 2, 2, 88, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-01-1', 0, 'D2-089-01-1', 0, 1, 2, 2, 89, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-01-2', 0, 'D2-089-01-2', 0, 1, 2, 2, 89, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-02-1', 0, 'D2-089-02-1', 0, 1, 2, 2, 89, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-02-2', 0, 'D2-089-02-2', 0, 1, 2, 2, 89, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-03-1', 0, 'D2-089-03-1', 0, 1, 2, 2, 89, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-03-2', 0, 'D2-089-03-2', 0, 1, 2, 2, 89, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-04-1', 0, 'D2-089-04-1', 0, 1, 2, 2, 89, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-04-2', 0, 'D2-089-04-2', 0, 1, 2, 2, 89, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-05-1', 0, 'D2-089-05-1', 0, 1, 2, 2, 89, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-05-2', 0, 'D2-089-05-2', 0, 1, 2, 2, 89, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-06-1', 0, 'D2-089-06-1', 0, 1, 2, 2, 89, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-06-2', 0, 'D2-089-06-2', 0, 1, 2, 2, 89, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-07-1', 0, 'D2-089-07-1', 0, 1, 2, 2, 89, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-07-2', 0, 'D2-089-07-2', 0, 1, 2, 2, 89, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-08-1', 0, 'D2-089-08-1', 0, 1, 2, 2, 89, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-08-2', 0, 'D2-089-08-2', 0, 1, 2, 2, 89, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-09-1', 0, 'D2-089-09-1', 0, 1, 2, 2, 89, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-09-2', 0, 'D2-089-09-2', 0, 1, 2, 2, 89, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-10-1', 0, 'D2-089-10-1', 0, 1, 2, 2, 89, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-10-2', 0, 'D2-089-10-2', 0, 1, 2, 2, 89, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-11-1', 0, 'D2-089-11-1', 0, 1, 2, 2, 89, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-11-2', 0, 'D2-089-11-2', 0, 1, 2, 2, 89, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-12-1', 0, 'D2-089-12-1', 0, 1, 2, 2, 89, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-12-2', 0, 'D2-089-12-2', 0, 1, 2, 2, 89, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-13-1', 0, 'D2-089-13-1', 0, 1, 2, 2, 89, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-13-2', 0, 'D2-089-13-2', 0, 1, 2, 2, 89, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-14-1', 0, 'D2-089-14-1', 0, 1, 2, 2, 89, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-14-2', 0, 'D2-089-14-2', 0, 1, 2, 2, 89, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-15-1', 0, 'D2-089-15-1', 0, 1, 2, 2, 89, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-089-15-2', 0, 'D2-089-15-2', 0, 1, 2, 2, 89, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-01-1', 0, 'D2-090-01-1', 0, 1, 2, 2, 90, 1, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-01-2', 0, 'D2-090-01-2', 0, 1, 2, 2, 90, 1, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-02-1', 0, 'D2-090-02-1', 0, 1, 2, 2, 90, 2, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-02-2', 0, 'D2-090-02-2', 0, 1, 2, 2, 90, 2, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-03-1', 0, 'D2-090-03-1', 0, 1, 2, 2, 90, 3, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-03-2', 0, 'D2-090-03-2', 0, 1, 2, 2, 90, 3, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-04-1', 0, 'D2-090-04-1', 0, 1, 2, 2, 90, 4, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-04-2', 0, 'D2-090-04-2', 0, 1, 2, 2, 90, 4, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-05-1', 0, 'D2-090-05-1', 0, 1, 2, 2, 90, 5, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-05-2', 0, 'D2-090-05-2', 0, 1, 2, 2, 90, 5, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-06-1', 0, 'D2-090-06-1', 0, 1, 2, 2, 90, 6, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-06-2', 0, 'D2-090-06-2', 0, 1, 2, 2, 90, 6, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-07-1', 0, 'D2-090-07-1', 0, 1, 2, 2, 90, 7, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-07-2', 0, 'D2-090-07-2', 0, 1, 2, 2, 90, 7, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-08-1', 0, 'D2-090-08-1', 0, 1, 2, 2, 90, 8, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-08-2', 0, 'D2-090-08-2', 0, 1, 2, 2, 90, 8, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-09-1', 0, 'D2-090-09-1', 0, 1, 2, 2, 90, 9, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-09-2', 0, 'D2-090-09-2', 0, 1, 2, 2, 90, 9, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-10-1', 0, 'D2-090-10-1', 0, 1, 2, 2, 90, 10, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-10-2', 0, 'D2-090-10-2', 0, 1, 2, 2, 90, 10, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-11-1', 0, 'D2-090-11-1', 0, 1, 2, 2, 90, 11, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-11-2', 0, 'D2-090-11-2', 0, 1, 2, 2, 90, 11, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-12-1', 0, 'D2-090-12-1', 0, 1, 2, 2, 90, 12, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-12-2', 0, 'D2-090-12-2', 0, 1, 2, 2, 90, 12, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-13-1', 0, 'D2-090-13-1', 0, 1, 2, 2, 90, 13, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-13-2', 0, 'D2-090-13-2', 0, 1, 2, 2, 90, 13, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-14-1', 0, 'D2-090-14-1', 0, 1, 2, 2, 90, 14, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-14-2', 0, 'D2-090-14-2', 0, 1, 2, 2, 90, 14, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-15-1', 0, 'D2-090-15-1', 0, 1, 2, 2, 90, 15, 1, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
INSERT INTO `t_app_stacker_location` (`location_id`, `location_status`, `business_location`, `location_type`, `lane_id`, `machine_id`, `l_row`, `l_line`, `l_layer`, `l_depth`, `location_tag`, `vehicle_no`, `create_time`, `update_time`, `remark`) VALUES ('D2-090-15-2', 0, 'D2-090-15-2', 0, 1, 2, 2, 90, 15, 2, NULL, NULL, '2025-10-06 20:08:14', '2025-10-06 20:08:14', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_stacker_stand
-- ----------------------------
DROP TABLE IF EXISTS `t_app_stacker_stand`;
CREATE TABLE `t_app_stacker_stand` (
`stand_id` varchar(64) NOT NULL COMMENT '站台编号',
`stacker_id` int NOT NULL COMMENT '堆垛机编号',
`plc_id` int NOT NULL COMMENT '属于哪个PLC管辖',
`stand_name` varchar(64) NOT NULL COMMENT '站台名称',
`stand_status` int NOT NULL COMMENT '站台状态',
`lane_id` int NOT NULL COMMENT '巷道编号',
`stand_location` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '站台位置',
`stand_xyz` varchar(64) DEFAULT NULL COMMENT '站台坐标',
`area_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '区域号,该区域号和输送搬运有关',
`allow_in` int NOT NULL COMMENT '是否允许入库',
`in_type` int NOT NULL COMMENT '入库方式:\n0-立即入库\n1-验证条码',
`allow_out` int NOT NULL COMMENT '是否允许出库',
`out_type` int DEFAULT NULL COMMENT '出库方式:\n0-默认',
`read_status_address` varchar(64) DEFAULT NULL COMMENT '读取状态的地址',
`write_task_address` varchar(64) DEFAULT NULL COMMENT '写入任务的地址',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`stand_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_stacker_stand
-- ----------------------------
BEGIN;
INSERT INTO `t_app_stacker_stand` (`stand_id`, `stacker_id`, `plc_id`, `stand_name`, `stand_status`, `lane_id`, `stand_location`, `stand_xyz`, `area_id`, `allow_in`, `in_type`, `allow_out`, `out_type`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('101', 1, 2, '入库站台', 1, 3, '1,1,1', '(1,1,2)', 'S1', 1, 1, 0, 0, 'DB300.0', 'DB301.0', '2025-06-03 10:16:20', '2025-06-03 14:38:27', 'test');
INSERT INTO `t_app_stacker_stand` (`stand_id`, `stacker_id`, `plc_id`, `stand_name`, `stand_status`, `lane_id`, `stand_location`, `stand_xyz`, `area_id`, `allow_in`, `in_type`, `allow_out`, `out_type`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('102', 1, 1, '出库站台', 1, 1, '(2,1,1)', '', '1', 0, 0, 1, 0, '', '', '2025-06-03 13:48:49', '2025-12-15 12:03:49', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_stock_compose_task
-- ----------------------------
DROP TABLE IF EXISTS `t_app_stock_compose_task`;
CREATE TABLE `t_app_stock_compose_task` (
`task_id` varchar(64) NOT NULL COMMENT '系统任务号',
`task_group` varchar(64) NOT NULL COMMENT '任务组',
`upper_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上游系统任务号',
`task_type` int NOT NULL COMMENT '任务类型:\n0-自动\n1-入库\n2-出库\n9-移库\n3-输送搬运',
`origin` varchar(64) DEFAULT NULL COMMENT '起点',
`destination` varchar(64) DEFAULT NULL COMMENT '终点',
`task_status` int NOT NULL COMMENT '任务状态:\n0-待执行\n1-排队中\n2-执行中\n3-任务完成\n4-任务取消\n5-任务异常',
`step_status` int NOT NULL COMMENT '分步状态:\n0-待执行\n1-执行中\n3-任务完成\n4-任务取消\n5-任务异常\n6-离开起点\n7-到达终点',
`can_cancel` int NOT NULL COMMENT '是否允许取消',
`priority` int NOT NULL COMMENT '任务优先级,数字越大优先级越高',
`vehicle_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号',
`vehicle_size` int NOT NULL COMMENT '载具尺寸',
`weight` decimal(10,4) NOT NULL COMMENT '载具重量',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`start_time` datetime DEFAULT NULL COMMENT '任务开始时间',
`complete_time` datetime DEFAULT NULL COMMENT '任务完成时间',
`end_time` datetime DEFAULT NULL COMMENT '结束时间',
`task_source` varchar(64) NOT NULL COMMENT '任务来源',
`create_person` varchar(64) NOT NULL COMMENT '任务创建人',
`task_msg` varchar(255) DEFAULT NULL COMMENT '任务信息',
PRIMARY KEY (`task_id`),
KEY `` (`upper_task_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_stock_compose_task
-- ----------------------------
BEGIN;
INSERT INTO `t_app_stock_compose_task` (`task_id`, `task_group`, `upper_task_id`, `task_type`, `origin`, `destination`, `task_status`, `step_status`, `can_cancel`, `priority`, `vehicle_no`, `vehicle_size`, `weight`, `create_time`, `update_time`, `start_time`, `complete_time`, `end_time`, `task_source`, `create_person`, `task_msg`) VALUES ('1759820293397010000', '1759820293397010001', NULL, 2, 'A1-001-02-2', '101', 1, 0, 1, 5, 'T1001', 0, 0.0000, '2025-10-07 14:58:13', '2025-10-07 14:58:13', NULL, NULL, NULL, 'WCS', 'developer', '任务解析完成');
INSERT INTO `t_app_stock_compose_task` (`task_id`, `task_group`, `upper_task_id`, `task_type`, `origin`, `destination`, `task_status`, `step_status`, `can_cancel`, `priority`, `vehicle_no`, `vehicle_size`, `weight`, `create_time`, `update_time`, `start_time`, `complete_time`, `end_time`, `task_source`, `create_person`, `task_msg`) VALUES ('1759820351955010000', '1759820351955010001', NULL, 1, '203', 'A1-011-02-2', 1, 0, 1, 5, 'T1002', 0, 0.0000, '2025-10-07 14:59:12', '2025-10-07 14:59:12', NULL, NULL, NULL, 'WCS', 'developer', '任务解析完成');
INSERT INTO `t_app_stock_compose_task` (`task_id`, `task_group`, `upper_task_id`, `task_type`, `origin`, `destination`, `task_status`, `step_status`, `can_cancel`, `priority`, `vehicle_no`, `vehicle_size`, `weight`, `create_time`, `update_time`, `start_time`, `complete_time`, `end_time`, `task_source`, `create_person`, `task_msg`) VALUES ('1759821023022010000', '1759821023023010000', NULL, 1, '202', 'A1-012-02-2', 1, 0, 1, 5, 'T1003', 0, 0.0000, '2025-10-07 15:10:23', '2025-10-07 15:10:23', NULL, NULL, NULL, 'WCS', 'developer', '任务解析完成');
COMMIT;
-- ----------------------------
-- Table structure for t_app_stock_compose_task_bak
-- ----------------------------
DROP TABLE IF EXISTS `t_app_stock_compose_task_bak`;
CREATE TABLE `t_app_stock_compose_task_bak` (
`task_id` varchar(64) NOT NULL COMMENT '系统任务号',
`task_group` varchar(64) NOT NULL COMMENT '任务组',
`upper_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上游系统任务号',
`task_type` int NOT NULL COMMENT '任务类型:\n0-自动\n1-入库\n2-出库\n9-移库\n3-输送搬运',
`origin` varchar(64) DEFAULT NULL COMMENT '起点',
`destination` varchar(64) DEFAULT NULL COMMENT '终点',
`task_status` int NOT NULL COMMENT '任务状态:\n0-待执行\n1-排队中\n2-执行中\n3-任务完成\n4-任务取消\n5-任务异常',
`step_status` int NOT NULL COMMENT '分步状态:\n0-待执行\n1-执行中\n3-任务完成\n4-任务取消\n5-任务异常\n6-离开起点\n7-到达终点',
`can_cancel` int NOT NULL COMMENT '是否允许取消',
`priority` int NOT NULL COMMENT '任务优先级,数字越大优先级越高',
`vehicle_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号',
`vehicle_size` int NOT NULL COMMENT '载具尺寸',
`weight` decimal(10,4) NOT NULL COMMENT '载具重量',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`start_time` datetime DEFAULT NULL COMMENT '任务开始时间',
`complete_time` datetime DEFAULT NULL COMMENT '任务完成时间',
`end_time` datetime DEFAULT NULL COMMENT '结束时间',
`task_source` varchar(64) NOT NULL COMMENT '任务来源',
`create_person` varchar(64) NOT NULL COMMENT '任务创建人',
`task_msg` varchar(255) DEFAULT NULL COMMENT '任务信息',
PRIMARY KEY (`task_id`),
KEY `` (`upper_task_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_stock_compose_task_bak
-- ----------------------------
BEGIN;
INSERT INTO `t_app_stock_compose_task_bak` (`task_id`, `task_group`, `upper_task_id`, `task_type`, `origin`, `destination`, `task_status`, `step_status`, `can_cancel`, `priority`, `vehicle_no`, `vehicle_size`, `weight`, `create_time`, `update_time`, `start_time`, `complete_time`, `end_time`, `task_source`, `create_person`, `task_msg`) VALUES ('17598202933973010000', '1759820293397010001', NULL, 2, 'A1-001-02-2', '101', 1, 0, 1, 5, 'T1001', 0, 0.0000, '2025-10-07 14:58:13', '2025-10-07 14:58:13', NULL, NULL, NULL, 'WCS', 'developer', '任务解析完成');
COMMIT;
-- ----------------------------
-- Table structure for t_app_stock_scan
-- ----------------------------
DROP TABLE IF EXISTS `t_app_stock_scan`;
CREATE TABLE `t_app_stock_scan` (
`scan_id` varchar(64) NOT NULL COMMENT '扫码点位',
`scan_name` varchar(64) NOT NULL COMMENT '扫码名称',
`scan_status` int NOT NULL COMMENT '扫码状态',
`scan_type` int NOT NULL COMMENT '扫码类型',
`scan_method` varchar(128) DEFAULT NULL COMMENT '扫码方法',
`param1` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '扫码参数1',
`param2` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '扫码参数2',
`param3` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '扫码参数3',
`plc_id` int NOT NULL COMMENT '管辖的PLC',
`read_status_address` varchar(64) DEFAULT NULL COMMENT '读取状态地址',
`write_task_address` varchar(64) DEFAULT NULL COMMENT '写入任务地址',
`led_no` int NOT NULL COMMENT 'LED屏编号没有的填0',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`scan_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_stock_scan
-- ----------------------------
BEGIN;
INSERT INTO `t_app_stock_scan` (`scan_id`, `scan_name`, `scan_status`, `scan_type`, `scan_method`, `param1`, `param2`, `param3`, `plc_id`, `read_status_address`, `write_task_address`, `led_no`, `create_time`, `update_time`, `remark`) VALUES ('C1', '出库扫码', 0, 0, 'STACKER_CHECK', '1', '1', '1', 2, 'DB300.1', 'DB90.100', 1, '2025-08-11 15:44:46', '2025-08-12 11:14:21', '-');
INSERT INTO `t_app_stock_scan` (`scan_id`, `scan_name`, `scan_status`, `scan_type`, `scan_method`, `param1`, `param2`, `param3`, `plc_id`, `read_status_address`, `write_task_address`, `led_no`, `create_time`, `update_time`, `remark`) VALUES ('P1', '捡选扫码1', 1, 0, 'CONVEY_PICK_TASK', 'P1', '-', '-', 1, '-', '-', 0, '2025-08-12 10:21:44', '2025-08-12 11:14:00', '0');
INSERT INTO `t_app_stock_scan` (`scan_id`, `scan_name`, `scan_status`, `scan_type`, `scan_method`, `param1`, `param2`, `param3`, `plc_id`, `read_status_address`, `write_task_address`, `led_no`, `create_time`, `update_time`, `remark`) VALUES ('R1_APPLY', '申请入库扫码', 1, 0, 'LOGIN_STACKER', 'WMS', '', '', 1, '', '', 0, '2025-09-09 21:19:03', '2025-09-10 16:35:13', '');
COMMIT;
-- ----------------------------
-- Table structure for t_app_stock_single_task
-- ----------------------------
DROP TABLE IF EXISTS `t_app_stock_single_task`;
CREATE TABLE `t_app_stock_single_task` (
`task_id` varchar(64) NOT NULL COMMENT '系统任务号',
`task_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务组',
`plc_task_id` int NOT NULL COMMENT '设备任务号',
`upper_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上游系统任务号',
`execute_machine` int NOT NULL COMMENT '执行设备:\n1-堆垛机\n2-输送线\n3-四项车\n4-货柜\n5-RGV\n6-AGV',
`task_type` int NOT NULL COMMENT '任务类型:\n0-自动\n1-入库\n2-出库\n9-移库\n3-输送搬运',
`origin` varchar(64) DEFAULT NULL COMMENT '起点',
`destination` varchar(64) DEFAULT NULL COMMENT '终点',
`compose_destination` varchar(64) DEFAULT NULL COMMENT '组合式任务目的地',
`task_status` int NOT NULL COMMENT '任务状态:\n0-待执行\n1-排队中\n2-执行中\n3-任务完成\n4-任务取消\n5-任务异常',
`can_cancel` int NOT NULL COMMENT '是否允许取消',
`priority` int NOT NULL COMMENT '任务优先级,数字越大优先级越高',
`vehicle_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号',
`vehicle_no_number` int NOT NULL COMMENT '数字载具号',
`vehicle_size` int NOT NULL COMMENT '载具尺寸',
`weight` decimal(10,4) NOT NULL COMMENT '载具重量',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`start_time` datetime DEFAULT NULL COMMENT '任务开始时间',
`complete_time` datetime DEFAULT NULL COMMENT '任务完成时间',
`end_time` datetime DEFAULT NULL COMMENT '结束时间',
`task_source` varchar(64) NOT NULL COMMENT '任务来源',
`create_person` varchar(64) NOT NULL COMMENT '任务创建人',
`task_msg` varchar(255) DEFAULT NULL COMMENT '任务信息',
PRIMARY KEY (`task_id`),
KEY `` (`upper_task_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_stock_single_task
-- ----------------------------
BEGIN;
INSERT INTO `t_app_stock_single_task` (`task_id`, `task_group`, `plc_task_id`, `upper_task_id`, `execute_machine`, `task_type`, `origin`, `destination`, `compose_destination`, `task_status`, `can_cancel`, `priority`, `vehicle_no`, `vehicle_no_number`, `vehicle_size`, `weight`, `create_time`, `update_time`, `start_time`, `complete_time`, `end_time`, `task_source`, `create_person`, `task_msg`) VALUES ('1759820294025010000', '1759820293397010001', 100011, NULL, 1, 2, 'A1-001-02-2', '101', '101', 3, 1, 5, 'T1001', 0, 0, 0.0000, '2025-11-01 14:58:14', '2025-10-07 14:58:34', NULL, NULL, NULL, 'WCS', 'developer', NULL);
INSERT INTO `t_app_stock_single_task` (`task_id`, `task_group`, `plc_task_id`, `upper_task_id`, `execute_machine`, `task_type`, `origin`, `destination`, `compose_destination`, `task_status`, `can_cancel`, `priority`, `vehicle_no`, `vehicle_no_number`, `vehicle_size`, `weight`, `create_time`, `update_time`, `start_time`, `complete_time`, `end_time`, `task_source`, `create_person`, `task_msg`) VALUES ('1759820352008010000', '1759820351955010001', 100012, NULL, 1, 1, '102', 'A1-011-02-2', 'A1-011-02-2', 3, 1, 5, 'T1002', 0, 0, 0.0000, '2025-11-01 14:59:12', '2025-10-07 14:59:12', NULL, NULL, NULL, 'WCS', 'developer', NULL);
INSERT INTO `t_app_stock_single_task` (`task_id`, `task_group`, `plc_task_id`, `upper_task_id`, `execute_machine`, `task_type`, `origin`, `destination`, `compose_destination`, `task_status`, `can_cancel`, `priority`, `vehicle_no`, `vehicle_no_number`, `vehicle_size`, `weight`, `create_time`, `update_time`, `start_time`, `complete_time`, `end_time`, `task_source`, `create_person`, `task_msg`) VALUES ('1759821024039010000', '1759821023023010000', 100015, NULL, 1, 3, 'A1-011-02-2', 'A1-012-02-2', 'A1-012-02-2', 3, 1, 5, 'T1003', 0, 0, 0.0000, '2025-11-02 15:10:24', '2025-10-07 15:10:24', NULL, NULL, NULL, 'WCS', 'developer', NULL);
COMMIT;
-- ----------------------------
-- Table structure for t_app_stock_single_task_bak
-- ----------------------------
DROP TABLE IF EXISTS `t_app_stock_single_task_bak`;
CREATE TABLE `t_app_stock_single_task_bak` (
`task_id` varchar(64) NOT NULL COMMENT '系统任务号',
`task_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务组',
`plc_task_id` int NOT NULL COMMENT '设备任务号',
`upper_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上游系统任务号',
`execute_machine` int NOT NULL COMMENT '执行设备:\n1-堆垛机\n2-输送线\n3-四项车\n4-货柜\n5-RGV\n6-AGV',
`task_type` int NOT NULL COMMENT '任务类型:\n0-自动\n1-入库\n2-出库\n9-移库\n3-输送搬运',
`origin` varchar(64) DEFAULT NULL COMMENT '起点',
`destination` varchar(64) DEFAULT NULL COMMENT '终点',
`compose_destination` varchar(64) DEFAULT NULL COMMENT '组合式任务目的地',
`task_status` int NOT NULL COMMENT '任务状态:\n0-待执行\n1-排队中\n2-执行中\n3-任务完成\n4-任务取消\n5-任务异常',
`can_cancel` int NOT NULL COMMENT '是否允许取消',
`priority` int NOT NULL COMMENT '任务优先级,数字越大优先级越高',
`vehicle_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号',
`vehicle_no_number` int NOT NULL COMMENT '数字载具号',
`vehicle_size` int NOT NULL COMMENT '载具尺寸',
`weight` decimal(10,4) NOT NULL COMMENT '载具重量',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`start_time` datetime DEFAULT NULL COMMENT '任务开始时间',
`complete_time` datetime DEFAULT NULL COMMENT '任务完成时间',
`end_time` datetime DEFAULT NULL COMMENT '结束时间',
`task_source` varchar(64) NOT NULL COMMENT '任务来源',
`create_person` varchar(64) NOT NULL COMMENT '任务创建人',
`task_msg` varchar(255) DEFAULT NULL COMMENT '任务信息',
PRIMARY KEY (`task_id`),
KEY `` (`upper_task_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_stock_single_task_bak
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for t_app_tray_convey_location
-- ----------------------------
DROP TABLE IF EXISTS `t_app_tray_convey_location`;
CREATE TABLE `t_app_tray_convey_location` (
`id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键',
`location_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '位置编号',
`business_location_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '业务位置号',
`location_name` varchar(64) DEFAULT NULL COMMENT '点位名称',
`location_status` int NOT NULL COMMENT '点位状态',
`location_type` int NOT NULL COMMENT '点位类型:\n0 - 普通点;\n1 - 任务点',
`plc_id` int NOT NULL COMMENT '属于哪个PLC',
`location_xyz` varchar(64) DEFAULT NULL COMMENT '点位坐标',
`area_id` varchar(64) NOT NULL COMMENT '区域号',
`read_status_address` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '读取状态的地址',
`write_task_address` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '写入任务的地址',
`create_time` datetime NOT NULL COMMENT '创建时间',
`update_time` datetime NOT NULL COMMENT '更新时间',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of t_app_tray_convey_location
-- ----------------------------
BEGIN;
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('12312qw123678678', '103', '103', '101站台', 1, 1, 1, '-', '1', 'DB100.20', 'DB101.30', '2025-08-03 15:28:44', '2025-08-03 15:28:46', '-');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('12312qwe6476', '101', '101', '101号站台', 1, 0, 1, '-', '2', 'DB100.20', 'DB101.30', '2025-08-03 15:28:44', '2025-08-03 22:06:48', '-');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('12313312345645', '102', '102', '101站台', 1, 1, 1, '-', '1', 'DB100.20', 'DB101.30', '2025-08-03 15:28:44', '2025-08-03 15:28:46', '-');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212022389010000', '201', '201', '201号站台', 1, 0, 1, '', 'T1', '', '', '2025-08-03 17:07:02', '2025-08-03 17:07:02', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212118263010000', '202', '202', '202号站台', 1, 0, 1, '(1.3.1)', 'T1;1', '', '', '2025-08-03 17:08:38', '2025-08-03 22:07:40', '测试修改');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212131882010000', '203', '203', '203号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:08:52', '2025-08-03 17:08:52', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212138328010000', '204', '204', '204号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:08:58', '2025-08-03 17:08:58', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212166072010000', '205', '205', '205号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:09:26', '2025-08-03 17:09:26', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212171436010000', '206', '206', '206号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:09:31', '2025-08-03 17:09:31', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212176648010000', '207', '207', '207号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:09:37', '2025-08-03 17:09:37', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212181414010000', '208', '208', '208号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:09:41', '2025-08-03 17:09:41', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212187238010000', '209', '209', '209号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:09:47', '2025-08-03 17:09:47', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212192896010000', '301', '301', '301号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:09:53', '2025-08-03 17:09:53', '');
INSERT INTO `t_app_tray_convey_location` (`id`, `location_id`, `business_location_id`, `location_name`, `location_status`, `location_type`, `plc_id`, `location_xyz`, `area_id`, `read_status_address`, `write_task_address`, `create_time`, `update_time`, `remark`) VALUES ('1754212198068010000', '302', '302', '302号站台', 1, 1, 1, '', 'T1', '', '', '2025-08-03 17:09:58', '2025-08-03 17:09:58', '');
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;